Quick Reference
Every markdown element you'll actually use, with copy-paste syntax. Covers CommonMark and GitHub Flavored Markdown (GFM) extensions.
| Element | Markdown Syntax |
|---|---|
| Bold | **bold text** |
| Italic | *italic text* |
| Bold + Italic | ***bold italic*** |
| Strikethrough | ~~strikethrough~~ |
| Inline code | `inline code` |
| Element | Markdown Syntax |
|---|---|
| H1 | # Heading 1 |
| H2 | ## Heading 2 |
| H3 | ### Heading 3 |
| H4 | #### Heading 4 |
| H5 | ##### Heading 5 |
| H6 | ###### Heading 6 |
| Element | Markdown Syntax |
|---|---|
| Unordered list | - Item - Item - Nested item |
| Ordered list | 1. First 2. Second 3. Third |
| Task list (GFM) | - [x] Done - [ ] To do |
| Element | Markdown Syntax |
|---|---|
| Link | [Link text](https://example.com) |
| Link with title | [Text](https://url.com "Title") |
| Image |  |
| Image with title |  |
| Auto-link (GFM) | https://example.com |
| Element | Markdown Syntax |
|---|---|
| Inline code | `code here` |
| Code block | ``` code here ``` |
| Syntax highlighting | ```javascript const x = 1; ``` |
| Fenced (tildes) | ~~~python
print('hi')
~~~ |
| Element | Markdown Syntax |
|---|---|
| Basic table | | Col 1 | Col 2 | |-------|-------| | A | B | |
| Aligned table | | Left | Center | Right | |:------|:------:|------:| | L | C | R | |
| Element | Markdown Syntax |
|---|---|
| Blockquote | > This is a quote. |
| Nested blockquote | > Outer >> Inner |
| Blockquote with content | > **Note:** Important detail. > More text here. |
| Element | Markdown Syntax |
|---|---|
| Horizontal rule | --- |
| Line break | End line with two spaces or use \ |
| Escape character | \*not italic\* |
| Footnote (GFM) | Text[^1] [^1]: Footnote. |
| Superscript | <sup>text</sup> |
| Subscript | <sub>text</sub> |
| Keyboard key | <kbd>Ctrl</kbd> |
Knowdust is a markdown-first workspace with built-in git history — every note is a real .md file with every version recoverable.
Try Knowdust free