mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
24 lines
275 B
Markdown
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>
|