기본 문법
모든 마크다운 파서가 지원하는 핵심 CommonMark 요소입니다.
| Element | Markdown | Result |
|---|---|---|
| Heading | # Heading 1
## Heading 2
### Heading 3 | Heading 1 |
| Bold | **bold text** | bold text |
| Italic | *italic text* | italic text |
| Bold and italic | ***bold and italic*** | bold and italic |
| Blockquote | > Quoted text | Quoted text |
| Ordered list | 1. First item
2. Second item
3. Third item |
|
| Unordered list | - First item
- Second item |
|
| Inline code | `code` | code |
| Horizontal rule | --- | |
| Link | [title](https://example.com) | title |
| Image |  | alt text (renders the image) |