Markdown语法记录
Posted houhou87
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Markdown语法记录相关的知识,希望对你有一定的参考价值。
# title1
## title2
### title3
#### title4
##### title5
###### title6
####### title7
### title3
# title1
## title2
---
</br>
>区块引用,
>第二行1</br>
>第二行2
>>第三行 - 嵌套
>>>第四行
区块引用外面
引用的区块内也可以使用其他的 Markdown 语法,包括标题、列表、代码区块等:
##### 一个标题
1. 第一行
2. 第二行</b>
使用代码:
return shell_exec("echo $input | $markdown_script");
##列表
* red
* green
* blue
---
- red
- green
- blue
---
1. Bird
2. McHale
3. Parish
---
1. This is a list item with two paragraphs.
This is a list item with two paragraphs.fdasfsdafsdafasdfsd
2. fdsafasd
fdsfsdafsdfsd
fdsfasdf
3. fasdfas
4. fdf
---
* A list item with a blockquote:
This is a blockquote
inside a list item.
* B list item with a blockquote:
woshi
fdsa
---
* 一列表项包含一个列表区块:
public class Hired() {
private String abc;
}
1986. What a great season.
##代码块
缩进 4 个空格或是 1 个制表符
public class Hired() {
private String abc;
}
Here is an example of AppleScript:
tell application "Foo"
beep
end tell
代码块中 自动转成实体
<div class="footer">
© 2004 Foo Corporation
</div>
- - -
星号、减号、底线来建立一个分隔线
***
******
---
超链接
1. 参考式-带链接说明 This is [an example](http://example.com/ "Title") inline link.
2. [This link](http://example.net/) has no title attribute.
如果你是要链接到同样主机的资源,你可以使用*相对路径*:
See my [About](/about/) page for details.
- 自己的超链接 [Bai du](http://www.baidu.com "百度一下,你就知道") inline link.
- This is [an example] [id1] reference-style link.
[id1]: http://example.com/ "Optional Title Here"
简化版超链接</br>
[Google][]
[Google]: http://google.com/ "Google 一下"
Visit [Daring Fireball][] for more information.
[Daring Fireball]: http://daringfireball.net/
- 推荐写发
I get 10 times more traffic from [Google][] than from
[Yahoo][] or [MSN][].
[google]: http://google.com/ "Google"
[yahoo]: http://search.yahoo.com/ "Yahoo Search"
[msn]: http://search.msn.com/ "MSN Search"
---
**强调**
- *single asterisks*
- _single underscores_
- **double asterisks**
- __double underscores__
使用*包裹 *哈哈*
---
**行内代码**
Use the `printf()` function.
``There is a literal backtick (`) here.``
``哈哈哈哈`你是猪`uuu``
代码起始处加入 反引号
A single backtick in a code span: `` `hahahahah ``
A backtick-delimited string in a code span: `` `foo` ``
Please don‘t use any `<blink>` tags.
---
**图片**
![发生大法师大发生大法师大傻傻的](/path/to/img.jpg "垃圾图片")
![Alt text](/path/to/img.jpg "Optional title")
![googlegoogle][]
[googlegoogle]:/path/to/img.jpg "googlegoogle"
---
**自动连接**
- <[email protected]>
- <https://www.baidu.com>
*literal asterisks*
Markdown 支持以下这些符号前面加上反斜杠来帮助插入普通的符号:
``
反斜线
` 反引号
* 星号
_ 底线
{} 花括号
[] 方括号
() 括弧
# 井字号
+ 加号
- 减号
. 英文句点
! 惊叹号
---
木有啦
以上是关于Markdown语法记录的主要内容,如果未能解决你的问题,请参考以下文章