mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
24 lines
260 B
Markdown
24 lines
260 B
Markdown
A self-closing tag:
|
|
|
|
<hr/>
|
|
|
|
One with attributes:
|
|
|
|
<hr style="background: #eaa" />
|
|
|
|
A bare element:
|
|
|
|
<div>content</div>
|
|
|
|
One with attributes:
|
|
|
|
<a href="http://example.com">link</a>
|
|
|
|
Nested elements:
|
|
|
|
<div>
|
|
parent
|
|
<div>
|
|
child
|
|
</div>
|
|
</div> |