mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-08-07 22:33:50 +00:00
Update lists in wikitext docs
Thanks @Skeeve
This commit is contained in:
parent
a159b5baf3
commit
88199ffd62
@ -1,6 +1,6 @@
|
|||||||
caption: Lists
|
caption: Lists
|
||||||
created: 20131205160257619
|
created: 20131205160257619
|
||||||
modified: 20140924104026734
|
modified: 20140924112303029
|
||||||
tags: WikiText
|
tags: WikiText
|
||||||
title: Lists in WikiText
|
title: Lists in WikiText
|
||||||
type: text/vnd.tiddlywiki
|
type: text/vnd.tiddlywiki
|
||||||
@ -55,10 +55,28 @@ Note that [[Block Quotes in WikiText]] can be mixed with lists. For example:
|
|||||||
|
|
||||||
! Paragraphs in Lists
|
! 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:
|
Entries in the list are delimited with a linebreak, making it impossible to include linebreaks within a list entry. There are a couple of workarounds.
|
||||||
|
|
||||||
|
First, you can transclude paragraph content from another tiddler. For example:
|
||||||
|
|
||||||
```
|
```
|
||||||
* First entry
|
* First entry
|
||||||
* <$transclude tiddler="MyTiddler" mode="block"/>
|
* <$transclude tiddler="MyTiddler" mode="block"/>
|
||||||
* Third entry
|
* Third entry
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Secondly, you can use an HTML "div" element to contain the multiline content. For example:
|
||||||
|
|
||||||
|
```
|
||||||
|
# Step 1
|
||||||
|
# Step 2
|
||||||
|
# Step 3<div>
|
||||||
|
|
||||||
|
Here is the first of several paragraphs. Note that the double linebreak preceding this paragraph is significant.
|
||||||
|
|
||||||
|
And here is the second of several paragraphs.
|
||||||
|
</div>
|
||||||
|
# Step 4
|
||||||
|
# Step 5
|
||||||
|
# Step 6
|
||||||
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user