Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus. Et legere ocurreret pri,
animal tacimates complectitur ad cum. Cu eum inermis inimicus efficiendi. Labore officiis his ex,
soluta officiis concludaturque ei qui, vide sensibus vim ad.
输出的 HTML 看起来像这样:
1
<p>Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus. Et legere ocurreret pri, animal tacimates complectitur ad cum. Cu eum inermis inimicus efficiendi. Labore officiis his ex, soluta officiis concludaturque ei qui, vide sensibus vim ad.</p>
> **Fusion Drive** combines a hard drive with a flash storage (solid-state drive) and presents it as a single logical volume with the space of both drives combined.
引用也可以嵌套:
1
2
3
4
> Donec massa lacus, ultricies a ullamcorper in, fermentum sed augue.
Nunc augue augue, aliquam non hendrerit ac, commodo vel nisi.
>> Sed adipiscing elit vitae augue consectetur a gravida nunc vehicula. Donec auctor
odio non est accumsan facilisis. Aliquam id turpis in dolor tincidunt mollis ac eu diam.
列表
无序列表
一系列项的列表,其中项的顺序没有明显关系。可以使用以下任何符号来表示无序列表中的项:
1
2
3
* 一项内容
- 一项内容
+ 一项内容
有序列表
一系列项的列表,其中项的顺序确实很重要。
1
2
3
4
5
6
7
8
1. Lorem ipsum dolor sit amet
2. Consectetur adipiscing elit
3. Integer molestie lorem at massa
4. Facilisis in pretium nisl aliquet
5. Nulla volutpat aliquam velit
6. Faucibus porta lacus fringilla vel
7. Aenean sit amet erat nunc
8. Eget porttitor lorem
如果你对每一项使用 1., Markdown 将自动为每一项编号。
任务列表
任务列表使你可以创建带有复选框的列表。 要创建任务列表,请在任务列表项之前添加破折号 (-) 和带有空格的方括号 ([ ]),要选择一个复选框,请在方括号之间添加 x ([x])。
1
2
3
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
代码
行内代码
用 ` 包装行内代码段。
1
在这个例子中,`hello world` 会被包裹成 **代码**。
缩进代码
将几行代码缩进至少四个空格。
1
2
3
4
// Some comments
line 1 of code
line 2 of code
line 3 of code
围栏代码块
使用 “围栏” ``` 来生成一段带有语言属性的代码块。
1
2
3
```
Sample text here...
```
代码高亮
在代码 “围栏” 之后直接添加你要使用的语言的文件扩展名,如 ```js,语法高亮显示将自动应用于渲染的 HTML 中。
| Option | Description |
| ------ | ----------- |
| data | path to data files to supply the data that will be passed into templates. |
| engine | engine to be used for processing templates. Handlebars is the default. |
| ext | extension to be used for dest files. |
注意:
在任何标题下方的破折号右侧添加冒号将使该列的文本右对齐。
在任何标题下方的破折号两边添加冒号将使该列的对齐文本居中。
1
2
3
4
5
| Option | Description |
|:------:| -----------:|
| data | path to data files to supply the data that will be passed into templates. |
| engine | engine to be used for processing templates. Handlebars is the default. |
| ext | extension to be used for dest files. |