definition-list4
This shows that paragraphs with multiple lines
won't be treated as the defintion term in a definition list,
which is the same that pandoc (and possibly multimarkdown) does
on multi-line text followed by something looking like a definition
item.
: This isn't a definition item.
Rendered HTML
<p>This shows that paragraphs with multiple lines
won't be treated as the defintion term in a definition list,
which is the same that pandoc (and possibly multimarkdown) does
on multi-line text followed by something looking like a definition
item.
: This isn't a definition item.
</p>
definition-list5
The following is the same text as definitionlist4.txt, up to the
line containing "item", which is separated by a blank line here.
This shows that paragraphs with multiple lines
won't be treated as the defintion term in a definition list,
which is the same that pandoc (and possibly multimarkdown) does
on multi-line text followed by something looking like a definition
item.
: This *is* treated as definition item.
Rendered HTML
<p>The following is the same text as definitionlist4.txt, up to the
line containing "item", which is separated by a blank line here.
</p><p>This shows that paragraphs with multiple lines
won't be treated as the defintion term in a definition list,
which is the same that pandoc (and possibly multimarkdown) does
on multi-line text followed by something looking like a definition
</p><dl><dt>item.
</dt><dd><p>This <em>is</em> treated as definition item.
</p></dd></dl>