parsedown/tests/data/html.html

15 lines
277 B
HTML
Raw Normal View History

2013-11-10 09:44:52 +01:00
<p>A self-closing tag:</p>
2013-11-02 20:42:55 +01:00
<hr/>
2013-11-10 09:44:52 +01:00
<p>One with attributes:</p>
2013-11-02 20:42:55 +01:00
<hr style="background: #eaa" />
2013-11-10 09:44:52 +01:00
<p>A bare element:</p>
2013-11-02 20:42:55 +01:00
<div>content</div>
2013-11-10 09:44:52 +01:00
<p>One with attributes:</p>
<a href="http://example.com">link</a>
2013-11-02 20:42:55 +01:00
<p>Nested elements:</p>
<div>
parent
<div>
child
</div>
</div>