1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-23 18:17:20 +00:00

Update lists in wikitext docs

Include workaround for multi-line list entries.
This commit is contained in:
Jermolene 2014-09-24 12:41:12 +02:00
parent 6b3646a025
commit f8e11da0fc

View File

@ -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
```