Files
pandoc/tests
John MacFarlane 5b7c209373 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.
2012-01-02 17:04:59 -08:00
..
2011-12-30 16:28:33 -08:00
2011-12-30 16:28:33 -08:00
2011-12-20 11:37:32 -08:00
2011-12-20 11:37:32 -08:00
2011-02-04 23:09:51 -08:00
2011-07-10 12:33:45 -07:00
2011-12-30 18:22:09 -08:00
2011-12-30 16:28:33 -08:00