Defect #18032
openContinued numbered lists (#_) are not working as the textile syntax expects
0%
Description
- Item 1
Some text
#_ Item 2 (counting continued from the last Item, with the #_ marker)
Some text
#_ Item 3 (counting continued from the last Item, with the #_ marker)
Each item should be rendered as 1, 2, 3, but this is not happening.
Related issues
Updated by Toshi MARUYAMA about 10 years ago
- Related to Defect #6992: wrong list number after table added
Updated by John Wilcox about 10 years ago
Textile also specifies starting numbering from specified number like this:
!# Item 1 (ignore the exclamation mark)
random text
#4 Item 2
Result should look like this:
1. Item 1
random text
4. Item 4
Updated by Toshi MARUYAMA about 10 years ago
- Related to Feature #18397: Outline numbering added
Updated by luk sak over 9 years ago
hello, i was confronted with the same problem but i think, i managed to solve it (with space on the following line after "#"; "_" means a space, because otherwise it would not display it riht):
written:
# first item_description of the first item
# continuing the list with item 2
## this is item 2.2.
if you want a break between for between example 1. and 2. (please mind, "_" is a space the linebreak is " "):
# first item_
# second item
displays:
- first item
description of the first item - continuing the list with item 2
- this is item 2.2.
if you want a break between for example between 1. and 2. (please mind, "_" is a space the linebreak is " "):
- first item
- second item
i hope its not too late (and sorry i had to correct it several times), cheers
Updated by Toshi MARUYAMA about 8 years ago
- Related to Defect #24396: Continuing_a_list_item_after_a_sub-item added