diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-08-18 15:26:29 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-08-18 15:26:29 +0000 |
commit | e48f046aa024fea9f806368796eaaaed1f09ceaf (patch) | |
tree | 368f96d85012242b4918190b6fd20e3c32fd9228 /tests/writer.docbook | |
parent | fcda8d191b7683779fdce93beb9814960e749df9 (diff) | |
download | pandoc-e48f046aa024fea9f806368796eaaaed1f09ceaf.tar.gz |
+ Fixed bug in markdown ordered list parsing. The problem was
that anyOrderedListStart did not check for a space following the
ordered list marker. So, 'A.B. 2007' would be parsed as a list item,
then fail because of the lack of space after 'A.' (required by
orderedListStart). Resolves Issue #22.
+ Fixed a similar problem in RST reader.
+ Added regression test.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@861 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'tests/writer.docbook')
-rw-r--r-- | tests/writer.docbook | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/writer.docbook b/tests/writer.docbook index 390c9f4fe..7b3f39f34 100644 --- a/tests/writer.docbook +++ b/tests/writer.docbook @@ -642,6 +642,12 @@ These should not be escaped: \$ \\ \> \[ \{ </orderedlist> </listitem> </orderedlist> + <para> + Should not be a list item: + </para> + <para> + M.A. 2007 + </para> </section> </section> <section> |