unplugged-system/external/markdown/tests/extensions/extra/def-in-list.html

25 lines
320 B
HTML
Raw Normal View History

<p>: a paragraph that starts with a colon</p>
<ul>
<li>A List item</li>
<li>
<dl>
<dt>A def term</dt>
<dd>A def item</dd>
<dd>a second</dd>
</dl>
</li>
<li>
<dl>
<dt>Another def term</dt>
<dd>
<p>a loose item</p>
</dd>
<dd>
<p>a second</p>
</dd>
</dl>
</li>
<li>
<p>: a list item that starts with a colon</p>
</li>
</ul>