---
name: code in bullet list
in: "* command run: @time ruby run-tests.rb > toto@"
html: "
\n\t- command run:
time ruby run-tests.rb > toto
\n
"
--- # Bret Pettichord, Thanks.
name: hard break in list
in: |-
* first line
* second
line
* third line
html: |-
- first line
- second
line
- third line
---
name: mixed nesting
in: |-
* bullet
*# number
*# number
*#* bullet
*# number
*# number with
a break
* bullet
** okay
html: |-
- bullet
- number
- number
- number
- number with
a break
- bullet
---
name: list continuation
in: |-
# one
# two
# three
# one
# two
# three
#_ four
# five
# six
html: |-
- one
- two
- three
- one
- two
- three
- four
- five
- six
valid_html: false
comment: there's not a good, valid alternative to the start attribute
---
name: continue after break
in: |-
# one
# two
# three
test
#_ four
# five
# six
test
#_ seven
# eight
# nine
html: |-
- one
- two
- three
test
- four
- five
- six
test
- seven
- eight
- nine
valid_html: false
comment: there's not a good, valid alternative to the start attribute
---
name: continue list when prior list contained nested list
in: |-
# one
# two
# three
#_ four
# five
## sub-note
## another sub-note
# six
#_ seven
# eight
# nine
html: |-
- one
- two
- three
- four
- five
- sub-note
- another sub-note
- six
- seven
- eight
- nine
valid_html: false
comment: there's not a good, valid alternative to the start attribute
---
name: list start number
in: |-
#293 two ninety three
# two ninety four
# two ninety five
#9 nine
# ten
# eleven
html: |-
- two ninety three
- two ninety four
- two ninety five
- nine
- ten
- eleven
valid_html: false
comment: there's not a good, valid alternative to the start attribute
---
name: continue list after started list
in: |-
#9 nine
# ten
# eleven
#_ twelve
# thirteen
# fourteen
html: |-
- nine
- ten
- eleven
- twelve
- thirteen
- fourteen
valid_html: false
comment: there's not a good, valid alternative to the start attribute
---
name: end notes
in: |-
h2. End Notes
# End Notes should be a numbered list
# Like this
# They must have anchors in the text
h2. See Also
* See Also notes should be bullets
* Like this
html: |-
End Notes
- End Notes should be a numbered list
- Like this
- They must have anchors in the text
See Also
- See Also notes should be bullets
- Like this
---
name: ordered list immediately following paragraph
desc: Normally a paragraph and a list that follows it should be separated by two newlines. Textile-2.0.0 recognizes the list even when separated by only one newline, but creates invalid XHTML by placing the list inside the paragraph. RedCloth recognizes the pattern for backward compatibility, but creates valid XHTML.
in: |-
A simple example.
# One
# Two
html: |-
A simple example.
- One
- Two
---
name: unordered list immediately following paragraph
in: |-
A simple example.
* One
* Two
html: |-
A simple example.
---
name: ordered list immediately following extended block
in: |-
div.. Here it comes.
A simple example.
# One
# Two
html: |-
Here it comes.
A simple example.
- One
- Two
---
name: unordered list immediately following extended block
in: |-
div.. Here it comes.
A simple example.
* One
* Two
html: |-
Here it comes.
A simple example.
---
name: unordered list with leading spaces
in: " * notice the leading space\n * RedCloth 3.0.4 used to accept it\n * Now we do too"
html: |-
- notice the leading space
- RedCloth 3.0.4 used to accept it
- Now we do too
---
name: ordered list with leading spaces
in: " # notice the leading space\n # RedCloth 3.0.4 used to accept it\n # Now we do too"
html: |-
- notice the leading space
- RedCloth 3.0.4 used to accept it
- Now we do too
---
name: unordered with classes
in: |-
*(class-one) one
*(class-two) two
*(class-three) three
html: |-
---
name: unordered with alignments
in: |-
*< one
*> two
*<> three
*= four
html: |-
---
name: with attributes that apply to the whole list
in: |-
(class#id)# one
# two
# three
html: |-
- one
- two
- three
---
name: with id on the list
in: |-
(#my-id)# one
# two
# three
html: |-
- one
- two
- three
---
name: with class on the list
in: |-
(my-class)# one
# two
# three
html: |-
- one
- two
- three
---
name: with id on the list item
in: |-
# one
#(#my-item) two
# three
html: |-
- one
- two
- three
---
name: with attributes that apply to the first list item
in: |-
#(class#id) one
# two
# three
html: |-
- one
- two
- three
---
name: changed from textism basics
desc: "This was in Textism basics, but when I changed the format of list styles, I removed it"
in: |-
{color:blue}# one
# two
# three
html: |-
- one
- two
- three
---
name: changed from threshold list attributes
desc: "Was: 'Attributes applied to the first list item will apply to the list itself.' but then we changed it"
in: |-
*{color:red} Item one
* Item two
* Item three
html: |-
- Item one
- Item two
- Item three
---
name: with one padding-left increment
in: "(# one"
html: |-
- one
---
name: with one padding-left increment and class
in: "((myclass)# one"
html: |-
- one
---
name: with two padding-left increments
in: "((# two"
html: |-
- two
---
name: with one padding-right increment
in: ")# one"
html: |-
- one
---
name: with padding-left and padding-right increments
in: "()# two"
html: |-
- two
---
name: with padding-left and padding-right increments switched
in: ")(# two"
html: |-
- two
---
name: with padding-left and padding-right increments and class
in: "()(myclass)# two"
html: |-
- two