美文网首页
Markdown语法练习

Markdown语法练习

作者: 留一瓢 | 来源:发表于2016-12-23 12:15 被阅读0次

链接

[baidu]:http://www.baidu.com
[百度][baidu]
[Google](https://www.google.com)

百度
Google

强调

|1|2|3||
|:---|:---:|---:||
|*asterisks*|_**asterisks**_|__underscores__|~~scratch~~|

|1|2|3||
|:---|:---:|---:||
|asterisks|asterisks|underscores|scratch|

列表

1. first ordered list item
2. another item
  * Unordered sub-list
1. Actual numbers don't matter,just that it's a number
  1. Ordered sub-list
5. And another item
  1. first ordered list item
  2. another item
  • Unordered sub-list
  1. Actual numbers don't matter,just that it's a number
  2. Ordered sub-list
  3. And another item

图片

![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png)
![ref model][logo]
[logo]:https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png
alt textalt text
![ref model][logo]
[logo]:https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png

代码与语法高亮

Inline `code`
```javascript
//javascript code test
function test(){
  console.log(1111)
}
```

```python
#python code test
import time
print time.time()
```

Inline code

//javascript code test
function test(){
  console.log(1111)
}
#python code test
import time
print time.time()

表格

|tables |are| cool|
|:---|:---:|---:|
|1|2|3
tables are cool
1 2 3

块引用

>Blockquotes are very handy in email to emulate reply text.
>This line is part of the same quote

Quote break

>This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote. 

Blockquotes are very handy in email to emulate reply text.
This line is part of the same quote

Quote break

This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can put Markdown into a blockquote.

分割线

Three or more...

---
Hyphens

***

Asterisks

___
Underscores

Three or more...


Hyphens


Asterisks


Underscores

Line Breaks

Here's a line for us to start with.

This line is separated from the one above by two newlines,so it will be a *separate paragraph*.

This line is  also a separate paragraph,but...
This line is only separated by a single newline,so it's a separate line in the *same paragraph*.

Here's a line for us to start with.

This line is separated from the one above by two newlines,so it will be a separate paragraph.

This line is also a separate paragraph,but...
This line is only separated by a single newline,so it's a separate line in the same paragraph.

相关文章

  • Day-1 陈海影

    学习markdown相关语法并练习 先下载简书,设置文本格式为markdown

  • Markdown语法练习

    一级标题 二级标题 六级标题 项目 - 无伙伴项目子项目孙项目 1.有序项目 字体字体 叫帅锅就划掉这根线 孔夫子...

  • Markdown语法练习

    h1级标题 h2级标题 h3级标题 h4级标题 h5级标题 h6级标题 分割线:三个以上的短线 即可作出分割线 超...

  • Markdown语法练习

  • markdown语法练习

    标题 列表1列表百度果芽官网果芽>注册登录设置编辑器:富文本/markdown写博客:新建文集(即文件夹)、新建文...

  • markdown语法练习

    标题1 标题2 标题3 标题6(#最多6个) 吃饭 睡觉 打豆豆 吃饭 睡觉 打豆豆 这里可以是一段引用可以一直这...

  • Markdown语法练习

    粗体 粗体 斜体 斜体强调 删除线 删除线 链接 markdown语法链接 代码块,底色 代码块 图片链接 引用 ...

  • Markdown语法练习

    标题 一级标题 二级标题 三级标题 四级标题 五级标题 六级标题 列表 无序列表 文本1 文本2 文本3 有序列表...

  • Markdown 语法练习

    一级标题 二级标题 三级标题 四级标题 五极标题 六级标题 普通文字 加粗字体 斜体字 加粗加斜 列表 列表...

  • markdown 语法练习

    一级标题 二级标题 三级标题 四级标题 五级标题 文本 文本 有序文本 有序文本简书![][1][1]:(imag...

网友评论

      本文标题:Markdown语法练习

      本文链接:https://www.haomeiwen.com/subject/owkkvttx.html