mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
51 lines
718 B
Markdown
51 lines
718 B
Markdown
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].
|
|
Text https://example.com/page.
|
|
|
|
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>
|
|
|
|
| Table | Heading |
|
|
| ----- | ------- |
|
|
| Table | Cell |
|
|
|
|
<!-- markdownlint-disable-file -->
|