


We use cookies to improve your experience
We use essential cookies to make our site work. With your consent, we may also use non-essential cookies to improve user experience.
7 sections · 43 items
| Code / Syntax | Description |
|---|---|
# Heading 1 | Largest heading (H1) |
## Heading 2 | Second-level heading (H2) |
### Heading 3 | Third-level heading (H3) |
#### Heading 4 | Fourth-level heading (H4) |
##### Heading 5 | Fifth-level heading (H5) |
###### Heading 6 | Smallest heading (H6) |
| Code / Syntax | Description |
|---|---|
*italic* or _italic_ | Italic text |
**bold** or __bold__ | Bold text |
***bold italic*** | Bold and italic |
~~strikethrough~~ | Strikethrough text |
`inline code` | Inline code |
> blockquote | Blockquote |
>> nested quote | Nested blockquote |
--- | Horizontal rule |
| Code / Syntax | Description |
|---|---|
- item or * item | Unordered list item |
1. item | Ordered list item |
- nested item | Nested list (indent 2 spaces) |
- [x] done | Task list (checked) |
- [ ] todo | Task list (unchecked) |
| Code / Syntax | Description |
|---|---|
[text](url) | Inline link |
[text](url "title") | Link with hover title |
[text][ref] | Reference-style link |
[ref]: url | Reference definition |
 | Image |
[](url) | Image with link |
<https://example.com> | Autolink |
| Code / Syntax | Description |
|---|---|
`code` | Inline code |
```language\ncode\n``` | Fenced code block with syntax highlighting |
indented code | Indented code block (4 spaces) |
```diff\n+ added\n- removed\n``` | Diff syntax highlighting |
| Code / Syntax | Description |
|---|---|
| Header | Header | | Table header row |
| --- | --- | | Header separator (required) |
| Cell | Cell | | Table data row |
| :--- | | Left-aligned column |
| :---: | | Center-aligned column |
| ---: | | Right-aligned column |
| Code / Syntax | Description |
|---|---|
:emoji: | Emoji shortcodes (:rocket:, :wave:) |
^[footnote text] | Inline footnote |
[^1]: text | Footnote reference definition |
==highlighted== | Highlighted text (some parsers) |
H~2~O | Subscript (some parsers) |
X^2^ | Superscript (some parsers) |
> [!NOTE]\n> text | GitHub alert/admonition |