Common Markup
Common Markdown markup
Common Markdown Markup Reference Table 🤔
1. Basic Formatting Markup
| Function | Markup Syntax | Effect Example |
|---|---|---|
| Heading 1 | # Heading | # Heading |
| Heading 2 | ## Heading | ## Heading |
| Bold | **Bold** | Bold |
| Italic | *Italic* | Italic |
| Bold Italic | ***Bold Italic*** | Bold Italic |
| Strikethrough | ~~Strikethrough~~ |
2. Lists and Quotes
| Function | Markup Syntax | Effect Example |
|---|---|---|
| Unordered List | - Item | - Item |
| Ordered List | 1. Item | 1. Item |
| Quote | > Quote Text | > Quote Text |
| Nested Quote | >> Nested Quote | >> Nested Quote |
3. Links and Media
| Function | Markup Syntax | Effect Example |
|---|---|---|
| Link | [Text](URL) | |
| Image |  | |
| Inline Code | `Code` | print() |
4. Structure and Separation
| Function | Markup Syntax | Effect Example |
|---|---|---|
| Code Block | ``` \nCode\n ``` | ```python\nprint()\n``` |
| Horizontal Rule | --- | --- |
| Hard Line Break | Add (two spaces) at end of line | First line (with two spaces at end) Second line |