1 // PERMUTE_ARGS: 2 // REQUIRED_ARGS: -D -Dd${RESULTS_DIR}/compilable -o- -preview=markdown 3 // POST_SCRIPT: compilable/extra-files/ddocAny-postscript.sh 4 5 /++ 6 # Lists 7 8 ## Unordered 9 10 - item one 11 12 *part of* item one 13 14 --- 15 // code in item one 16 --- 17 18 **not** part of item one 19 20 + + three 21 - different 22 * lists 23 24 - list with 25 - 26 - empty item 27 28 - parent item 29 - child item 30 31 - sibling item 32 - sibling item 33 34 After text: 35 - ### heading 36 - and item 37 38 ## Ordered 39 40 0. zero 41 1. one 42 43 List separator text 44 45 3. list that starts with three 46 47 1. parent item 48 1. child item 49 50 1. sibling item 51 2. sibling item 52 53 ## Not Lists 54 55 -no initial space 56 57 2.no initial space 58 59 1234567890. too many numbers 60 61 -1. negative 62 63 New lists must start with 1, not 64 6. So this isn't a list. 65 66 +/ 67 module ddoc_markdown_lists;