--- name: code in bullet list in: "* command run: @time ruby run-tests.rb > toto@" html: "" --- # Bret Pettichord, Thanks. name: hard break in list in: |- * first line * second line * third line html: |- --- name: mixed nesting in: |- * bullet *# number *# number *#* bullet *# number *# number with a break * bullet ** okay html: |- --- name: list continuation in: |- # one # two # three # one # two # three #_ four # five # six html: |-
  1. one
  2. two
  3. three
  1. one
  2. two
  3. three
  1. four
  2. five
  3. 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: |-
  1. one
  2. two
  3. three

test

  1. four
  2. five
  3. six

test

  1. seven
  2. eight
  3. 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: |-
  1. one
  2. two
  3. three
  1. four
  2. five
    1. sub-note
    2. another sub-note
  3. six
  1. seven
  2. eight
  3. 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: |-
  1. two ninety three
  2. two ninety four
  3. two ninety five
  1. nine
  2. ten
  3. 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: |-
  1. nine
  2. ten
  3. eleven
  1. twelve
  2. thirteen
  3. 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

  1. End Notes should be a numbered list
  2. Like this
  3. They must have anchors in the text

See Also

--- 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.

  1. One
  2. 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.
  1. One
  2. 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: |- --- 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: |-
  1. notice the leading space
  2. RedCloth 3.0.4 used to accept it
  3. 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: |-
  1. one
  2. two
  3. three
--- name: with id on the list in: |- (#my-id)# one # two # three html: |-
  1. one
  2. two
  3. three
--- name: with class on the list in: |- (my-class)# one # two # three html: |-
  1. one
  2. two
  3. three
--- name: with id on the list item in: |- # one #(#my-item) two # three html: |-
  1. one
  2. two
  3. three
--- name: with attributes that apply to the first list item in: |- #(class#id) one # two # three html: |-
  1. one
  2. two
  3. 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: |-
  1. one
  2. two
  3. 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: |- --- name: with one padding-left increment in: "(# one" html: |-
  1. one
--- name: with one padding-left increment and class in: "((myclass)# one" html: |-
  1. one
--- name: with two padding-left increments in: "((# two" html: |-
  1. two
--- name: with one padding-right increment in: ")# one" html: |-
  1. one
--- name: with padding-left and padding-right increments in: "()# two" html: |-
  1. two
--- name: with padding-left and padding-right increments switched in: ")(# two" html: |-
  1. two
--- name: with padding-left and padding-right increments and class in: "()(myclass)# two" html: |-
  1. two