>_FoxiRef
>_/cheatsheet/markdown
Markdown

Markdown Cheatsheet

Quick reference for Markdown syntax

#Headers

SyntaxDescription
# Heading 1Largest heading (H1)
## Heading 2Second largest (H2)
### Heading 3Third largest (H3)
#### Heading 4Fourth largest (H4)
##### Heading 5Fifth largest (H5)
###### Heading 6Smallest heading (H6)

#Emphasis

SyntaxDescription
*italic* or _italic_Italic text
**bold** or __bold__Bold text
***bold italic***Bold and italic
~~strikethrough~~Strikethrough
==highlight==Highlight (some support)
^superscript^Superscript (some support)
~subscript~Subscript (some support)

#Lists

SyntaxDescription
- item or * itemUnordered list
1. itemOrdered list
- sub itemNested list (indented)
- [ ] todoCheckbox (unchecked)
- [x] doneCheckbox (checked)

#Code

SyntaxDescription
`inline code`Inline code
```lang\ncode\n```Code block
```javascriptJavaScript syntax highlight
```pythonPython syntax highlight
```bashBash/Shell syntax highlight
code (4 spaces)Indented code block

#Blockquotes

SyntaxDescription
> quoteBlockquote
>> nestedNested blockquote
> multi\n> lineMulti-line quote

#Tables

SyntaxDescription
| col1 | col2 |Table row
|---|---|Header separator
|:---|Left align
|:---:|Center align
|---:|Right align

#Horizontal Rules

SyntaxDescription
---Horizontal rule (hyphens)
***Horizontal rule (asterisks)
___Horizontal rule (underscores)

#Escaping

SyntaxDescription
\*Escape asterisk
\#Escape hash
\`Escape backtick
\[Escape bracket

#Advanced

SyntaxDescription
[^1] ... [^1]: footnoteFootnotes
term\n: definitionDefinition list
:emoji:Emoji (GitHub)
$$math$$LaTeX math
```mermaidMermaid diagram

이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.

Markdown Cheatsheet - Syntax Reference | Foxi Dev Reference