parsedown/tests/data/html.md
2013-11-02 21:42:55 +02:00

24 lines
275 B
Markdown

Self-closing tag:
<hr/>
Self-closing tag with attributes:
<hr style="background: #eaa" />
Bare element:
<div>content</div>
Element with attributes:
<a href="http://parsedown.org">link</a>
Nested elements:
<div>
parent
<div>
child
</div>
</div>