# H1
## H2
### H3Headings: one to six #, followed by a space.
CommonMark basics plus the GitHub Flavored Markdown (GFM) extensions you use in READMEs, issues and docs.
21 entries
# H1
## H2
### H3Headings: one to six #, followed by a space.
**bold** *italic* ***both***Emphasis (underscores work too).
~~strikethrough~~Strikethrough (GFM).
`inline code`Inline code span.
> A quote
>
> continues hereBlockquote.
Line one
Line twoTwo trailing spaces (or a backslash) force a line break.
---Horizontal rule.
- Apples
- Pears
- Nested (2 spaces)Unordered list (-, * or +).
1. First
2. Second
3. ThirdOrdered list; numbers can all be 1.
- [x] Write docs
- [ ] Ship itTask list (GFM).
[QuickRef](https://quickref.dev "Title")Inline link with optional title.
[docs][1]
[1]: https://example.com/docsReference-style link.
Image: a link with a leading !.
<https://example.com>Autolink.
```python
print("hello")
```Fenced code block with language for syntax highlighting.
indented four spacesIndented code block.
| Name | Qty |
|:-----|----:|
| Pen | 2 |
| Ink | 10 |Colons in the divider row align columns left/right/center.
> [!NOTE]
> Useful information.Alerts: NOTE, TIP, IMPORTANT, WARNING, CAUTION.
<details>
<summary>Click to expand</summary>
Hidden content.
</details>Collapsible section via HTML.
Footnote[^1].
[^1]: The note.Footnotes.
@username #123Mentions and issue references.
GFM is GitHub’s superset of CommonMark. It adds tables, task lists, strikethrough, autolinks, footnotes and alert blocks.
End the line with two spaces or a backslash, or leave a blank line to start a new paragraph.
Put a backslash before the character, for example \* to show a literal asterisk.