1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00
parsedown/tests/data/html.md

24 lines
260 B
Markdown
Raw Normal View History

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