diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2008-09-12 00:05:32 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2008-09-12 00:05:32 +0000 |
commit | 943c2f353d20da99286e6487736cbccbaf1d2c72 (patch) | |
tree | 64468c0ad127ec3a305e5251f3163a4fc6e1afe8 /README | |
parent | c39a3fe7c44cb41f8837a5f81d066be15e6bfdba (diff) | |
download | pandoc-943c2f353d20da99286e6487736cbccbaf1d2c72.tar.gz |
Changed list parser so that only the starting list marker matters:
1. one
- two
(b) three
produces an ordered list with 1., 2., 3. This is the behavior of
Markdown.pl.
Modified README to document the new behavior.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1438 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'README')
-rw-r--r-- | README | 23 |
1 files changed, 3 insertions, 20 deletions
@@ -525,12 +525,13 @@ roman numerals: ii. subtwo iii. subthree -Note that Pandoc pays attention only to the *starting* number in a list. +Note that Pandoc pays attention only to the *starting* marker in a list. So, the following yields a list numbered sequentially starting from 2: (2) Two (5) Three - (2) Four + 1. Four + * Five If default list markers are desired, use '`#.`': @@ -538,24 +539,6 @@ If default list markers are desired, use '`#.`': #. two #. three -If you change list style in mid-list, Pandoc will notice and assume you -are starting a sublist. So, - - 1. One - 2. Two - A. Sub - B. Sub - 3. Three - -gets treated as if it were - - 1. One - 2. Two - A. Sub - B. Sub - 3. Three - - Definition lists ---------------- |