2023-01-09 21:59:54 -08:00
|
|
|
Every Markdown Syntax
|
|
|
|
=====================
|
|
|
|
|
|
|
|
## Level 2 ATX Heading
|
|
|
|
|
|
|
|
### Level 3 Closed ATX Heading ###
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
Text *emphasized* **strong** ___emphasized+strong___.
|
|
|
|
Text `code` <strike>html</strike> <https://example.com/page>.
|
|
|
|
Text [link](https://example.com/page) [link][] [link] ![image][link].
|
2023-02-05 16:58:06 -08:00
|
|
|
Text https://example.com/page.
|
2023-01-09 21:59:54 -08:00
|
|
|
|
|
|
|
Hard
|
|
|
|
line break
|
|
|
|
|
|
|
|
[link]: https://example.com/page "Title"
|
|
|
|
|
|
|
|
> Block quote
|
|
|
|
> > Nested
|
|
|
|
|
|
|
|
- Unordered
|
|
|
|
- List
|
|
|
|
- Items
|
|
|
|
Indented
|
|
|
|
|
|
|
|
Content
|
|
|
|
|
|
|
|
1. Ordered
|
|
|
|
2. List
|
|
|
|
1. Items
|
|
|
|
Indented
|
|
|
|
|
|
|
|
Content
|
|
|
|
|
|
|
|
```markdown options
|
|
|
|
Fenced code block
|
|
|
|
```
|
|
|
|
|
|
|
|
Indented code block
|
|
|
|
|
|
|
|
<p>
|
|
|
|
HTML block
|
|
|
|
</p>
|
|
|
|
|
2023-03-11 13:50:41 -08:00
|
|
|
| Table | Heading |
|
|
|
|
| ----- | ------- |
|
|
|
|
| Table | Cell |
|
|
|
|
|
2023-01-09 21:59:54 -08:00
|
|
|
<!-- markdownlint-disable-file -->
|