From f8e11da0fca088b62739459097215a78c2663d45 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Wed, 24 Sep 2014 12:41:12 +0200 Subject: [PATCH] Update lists in wikitext docs Include workaround for multi-line list entries. --- .../tiddlers/wikitext/Lists in WikiText.tid | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/editions/tw5.com/tiddlers/wikitext/Lists in WikiText.tid b/editions/tw5.com/tiddlers/wikitext/Lists in WikiText.tid index 4e4e73169..f8d8b1f5a 100644 --- a/editions/tw5.com/tiddlers/wikitext/Lists in WikiText.tid +++ b/editions/tw5.com/tiddlers/wikitext/Lists in WikiText.tid @@ -1,9 +1,9 @@ +caption: Lists created: 20131205160257619 -modified: 20131206154613715 +modified: 20140924104026734 tags: WikiText title: Lists in WikiText type: text/vnd.tiddlywiki -caption: Lists ! Unordered Lists @@ -52,3 +52,13 @@ Note that [[Block Quotes in WikiText]] can be mixed with lists. For example: **> Another quote * List Three ">> + +! Paragraphs in Lists + +Entries in the list are delimited with a linebreak, making it impossible to include linebreaks within a list entry. The workaround is to transclude paragraph content from another tiddler. For example: + +``` +* First entry +* <$transclude tiddler="MyTiddler" mode="block"/> +* Third entry +```