Markdown 语法
Posted sunny-shine
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Markdown 语法相关的知识,希望对你有一定的参考价值。
Markdown
标题 文字
# 一级标题 H1
## 二级标题 H2
### 三级标题 H3
#### 四级标题 H4
**这是加粗的文字**
*这是倾斜的文字*`
***这是斜体加粗的文字***
~~这是加删除线的文字~~
eg:
一级标题 H1
二级标题 H2
三级标题 H3
四级标题 H4
这是加粗的文字
这是倾斜的文字`
这是斜体加粗的文字
这是加删除线的文字
兼容 html
<table> <tr> <td>Foo</td> <td>Foo1</td> </tr> </table>
eg:
Foo | Foo1 |
Foo2 | Foo3 |
区块引用
This is the first level of quoting.
>
> > This is nested blockquote. 区块嵌套
>
> Back to the first level.
> ## 这是一个标题。
>
> 1. 这是第一行列表项。
> 2. 这是第二行列表项。
>
> 给出一些例子代码:
>
> return shell_exec("echo $input | $markdown_script");
eg:
This is the first level of quoting.
This is nested blockquote.
Back to the first level.
这是一个标题。
- 这是第一行列表项。
- 这是第二行列表项。
给出一些例子代码:
return shell_exec("echo $input | $markdown_script");
链接
[map/reduce](https://www.liaoxuefeng.com/wiki/001434446689867b27157e896e74d51a89c25cc8b43bdb3000/001435119854495d29b9b3d7028477a96ed74db95032675000)
图片
![](https://img2018.cnblogs.com/blog/1482297/201904/1482297-20190429163134258-446971520.png)
以上是关于Markdown 语法的主要内容,如果未能解决你的问题,请参考以下文章