diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2012-01-02 17:04:59 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2012-01-02 17:04:59 -0800 |
commit | 5b7c209373a441c2c7b296031025baa56a9f0c43 (patch) | |
tree | b11adb2e9a4a3814db45536897fe24ad17712578 /s5 | |
parent | 9001506f3398485512f46fe28ab93915d7a3314a (diff) | |
download | pandoc-5b7c209373a441c2c7b296031025baa56a9f0c43.tar.gz |
Markdown reader: Fix parsing of consecutive lists.
Pandoc previously behaved like Markdown.pl for consecutive
lists of different styles. Thus, the following would be parsed
as a single ordered list, rather than an ordered list followed
by an unordered list:
1. one
2. two
- one
- two
This patch makes pandoc behave more sensibly, parsing this as
two lists. Any change in list type (ordered/unordered) or in
list number style will trigger a new list. Thus, the following
will also be parsed as two lists:
1. one
2. two
a. one
b. two
Since we regard this as a bug in Markdown.pl, and not something
anyone would ever rely on, we do not preserve the old behavior
even when `--strict` is selected.
Diffstat (limited to 's5')
0 files changed, 0 insertions, 0 deletions