Markdown 备忘单

Markdown 语法快速参考指南

Heading 1

# Title
<h1>Title</h1>

Heading 2

## Title
<h2>Title</h2>

Bold

**text**
<strong>text</strong>

Italic

*text*
<em>text</em>

Blockquote

> text
<blockquote>text</blockquote>

Ordered List

1. item
<ol><li>item</li></ol>

Unordered List

- item
<ul><li>item</li></ul>

Code

`code`
<code>code</code>

Horizontal Rule

---
<hr>

Link

[title](url)
<a href='url'>title</a>

Image

![alt](url)
<img src='url' alt='alt'>