mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
15 lines
292 B
HTML
15 lines
292 B
HTML
<p>Self-closing tag:</p>
|
|
<hr/>
|
|
<p>Self-closing tag with attributes:</p>
|
|
<hr style="background: #eaa" />
|
|
<p>Bare element:</p>
|
|
<div>content</div>
|
|
<p>Element with attributes:</p>
|
|
<a href="http://parsedown.org">link</a>
|
|
<p>Nested elements:</p>
|
|
<div>
|
|
parent
|
|
<div>
|
|
child
|
|
</div>
|
|
</div> |