khajavi / pandoc

Automatically exported from code.google.com/p/pandoc
GNU General Public License v2.0
0 stars 0 forks source link

reST parser seems to be choking on multiline values when they occur at the END of a field list. #292

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
pandoc -f rst
:foo: bar
:baz: quux
   quux
:fim: fam

<dl>
<dt>foo</dt>
<dd><p>bar</p>
</dd>
<dt>baz</dt>
<dd><p>quux quux</p>
</dd>
<dt>fim</dt>
<dd><p>fam</p>
</dd>
</dl>

That's fine!  But:

pandoc -f rst
:foo: bar
:baz: quux
  quux

<p>:foo: bar :baz: quux quux</p>

Original issue reported on code.google.com by mike.fab...@gmail.com on 17 Mar 2011 at 2:39

GoogleCodeExporter commented 9 years ago
We believe that this issue is already fixed by commit 
403bb521cd78942096ae70f9c37f18da58d6290d.
Please verify.

Original comment by fiddloso...@gmail.com on 17 Mar 2011 at 7:30