caption: Lists created: 20131205160257619 modified: 20140924104026734 tags: WikiText title: Lists in WikiText type: text/vnd.tiddlywiki ! Unordered Lists You can create unordered lists with `*` characters: <> ! Ordered Lists Ordered lists use `#` instead of `*`: # First item # Second item # Third item You can also mix ordered and unordered list items: <> ! CSS Classes You can also assign a CSS class to an individual member of a list with this notation: <> ! Mixing Lists and Block Quotes Note that [[Block Quotes in WikiText]] can be mixed with lists. For example: < A quote **> 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 ```