Markdown 超简明语法
发布于 9 年前 作者 petitspois 5817 次浏览 最后一次编辑是 8 年前 来自 分享

#Markdown 简明语法

#标题 h1到h6由相应的#输出

# h1 Heading
## h2 Heading
### h3 Heading
#### h4 Heading
##### h5 Heading
###### h6 Heading

html:

<h1>h1 Heading</h1>
<h2>h2 Heading</h2>
<h3>h3 Heading</h3>
<h4>h4 Heading</h4>
<h5>h5 Heading</h5>
<h6>h6 Heading</h6>

#水平线 在html中<hr/>为水平线,在段元素中,在markdown中

  • ___:三个连续的下划线
  • —:三个破折号
  • *** :三个星号

#重点(加粗) 为了强调文本可以

**rendered as bold text**

HTML

<strong>rendered as bold text</strong>

#斜体

_rendered as italicized text_

HTML

<em>rendered as italicized text</em>

#删除线

~~Strike through this text.~~

#引用块

Add `>` before any text you want to quote. 

HTML

<blockquote>
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
</blockquote>

也可以嵌套

> 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.
>>> Donec massa lacus, ultricies a ullamcorper in, fermentum sed augue. 
Nunc augue augue, aliquam non hendrerit ac, commodo vel nisi. 

效果:

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.

Donec massa lacus, ultricies a ullamcorper in, fermentum sed augue. Nunc augue augue, aliquam non hendrerit ac, commodo vel nisi.

#无序列表 你可以使用下面任何符号:

* valid bullet
- valid bullet
+ valid bullet

例子:

+ Lorem ipsum dolor sit amet
+ Consectetur adipiscing elit
+ Integer molestie lorem at massa
+ Facilisis in pretium nisl aliquet
+ Nulla volutpat aliquam velit
  - Phasellus iaculis neque
  - Purus sodales ultricies
  - Vestibulum laoreet porttitor sem
  - Ac tristique libero volutpat at
+ Faucibus porta lacus fringilla vel
+ Aenean sit amet erat nunc
+ Eget porttitor lorem

效果:

  • Lorem ipsum dolor sit amet
  • Consectetur adipiscing elit
  • Integer molestie lorem at massa
  • Facilisis in pretium nisl aliquet
  • Nulla volutpat aliquam velit
    • Phasellus iaculis neque
    • Purus sodales ultricies
    • Vestibulum laoreet porttitor sem
    • Ac tristique libero volutpat at
  • Faucibus porta lacus fringilla vel
  • Aenean sit amet erat nunc
  • Eget porttitor lorem

HTML:

<ul>
  <li>Lorem ipsum dolor sit amet</li>
  <li>Consectetur adipiscing elit</li>
  <li>Integer molestie lorem at massa</li>
  <li>Facilisis in pretium nisl aliquet</li>
  <li>Nulla volutpat aliquam velit
œBNuVaGcIrr201504271304390815636676171430111079081œ  </li>
  <li>Faucibus porta lacus fringilla vel</li>
  <li>Aenean sit amet erat nunc</li>
  <li>Eget porttitor lorem</li>
</ul>

#有序列表

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

HTML:

<ol>
  <li>Lorem ipsum dolor sit amet</li>
  <li>Consectetur adipiscing elit</li>
  <li>Integer molestie lorem at massa</li>
  <li>Facilisis in pretium nisl aliquet</li>
  <li>Nulla volutpat aliquam velit</li>
  <li>Faucibus porta lacus fringilla vel</li>
  <li>Aenean sit amet erat nunc</li>
  <li>Eget porttitor lorem</li>
</ol>

TIP:如果序号只写1. 的情况,github会帮助你完成顺序

#code 用“ ` ”包裹你的代码

For example, `` should be wrapped as "inline".

#Block code ` ` ` html Sample text here… ` ` `

HTML:

<pre>
  <p>Sample text here...</p>
</pre>

#表格 通过管道符来连接table

| 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. |

效果:

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.

HTML:

<table>
  <tr>
œbXb9Iqhi05201504271304390815637225221430111079081œ  </tr>
  <tr>
œrazRLlcRnH201504271304390815637531061430111079081œ  </tr>
  <tr>
œIXydr7iwfW201504271304390815637796321430111079081œ  </tr>
  <tr>
œqZknClqFac201504271304390815638048671430111079081œ  </tr>
</table>

#表格右对齐

| 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. |

效果

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.

#链接

[Docsren](http://www.docs.ren)

HTML:

<a href="http://assemble.io">Assemble</a>

#为链接添加title

[Docsren](http://www.docs.ren "index")

HTML:

<a href="http://www.docs.ren" title="index">Docsren</a>

#锚链接

# Table of Contents
  * [Chapter 1](#chapter-1)
  * [Chapter 2](#chapter-2)
  * [Chapter 3](#chapter-3)

会跳转到以下:

## Chapter 1 <a id="chapter-1"></a>
Content for chapter one.

## Chapter 2 <a id="chapter-2"></a>
Content for chapter one.

## Chapter 3 <a id="chapter-3"></a>
Content for chapter one.

#图片

![hello](http://www.docs.ren/images/hello.png)

or

![Alt text](http://octodex.github.com/images/stormtroopocat.jpg "The Stormtroopocat")

原文地址

8 回复

疯狂列举,还是不错的~感谢楼猪~

API文档即视感。。还是不错哦~~

测试下

表格输入麻烦

aa bb
啊啊 ff

正需要,收藏,谢谢

回到顶部