0%

Markdown语法指南

摘要:了解 Markdown 语法当中的表格、代码块等特殊内容。

Tables (表格)

代码:

First Header  | Second Header
------------- | :-------------:
Content Cell  | Content Cell
Content Cell  | Content Cell

效果如下:

First Header Second Header
Content Cell Content Cell
Content Cell Content Cell

tips

:决定居中的位置

    :----    左对齐
    :---:   居中对齐
    -----:   右对齐

Code Blocks(代码区块)

代码:

1
2
3
4
~~~~~~~~~~~~~~~~~~~~~
a one-line code block
这 里 是 第 一 行 代 码
~~~~~~~~~~~~~~~~~~~~~

效果:

1
2
a one-line code block
这 里 是 第 一 行 代 码


特殊符号

删除线

苟利国家生死以,岂因祸福趋避之

1
<del> 苟利国家生死以,岂因祸福趋避之</del>

水平线


或者 -----------
1