学习MarkDown语法
Markdown是一种可以使用普通文本编辑器编写的标记语言,通过简单的标记语法,它可以使普通文本内容具有一定的格式。
1、标题
一般有六种标题(#~######);
例子:
#学习语法
##学习语法
###学习语法
######学习语法
结果:
学习语法
学习语法
学习语法
学习语法
2、上下文标题
上文标题(在标题结尾上“===”)
例子:
上文标题
===
结果:
上文标题
下文标题(在标题结尾加上“---”)
例子:
下文标题
---
结果:
下文标题
3、强调
斜体(两种方式:* *、_ _)
例子:
*斜体*
_斜体_
结果:
斜体
斜体
加粗(** **)
例子:
**加粗**
结果:
加粗
删除线(~~ ~~)
例子:
~~删除线~~
结果:
删除线
4、代码
代码块标记(```)
例子:
(```)
print('hello world!')
(```)
注:为了防止转译,前后三个反引号处加了小括号,实际是没有的。这里只是用来演示,实际中去掉两边小括号即可。
结果:
print('hello world!')
代码块缩进表示法(Tab或者四个空格)
例子:
(```)
print('hello world!')
(```)
结果:
print('hello world!')
语法高亮显示(```javascript)
例子:
(```)python
print('hello world!')
(```)
结果:
print('hello world!')
内联代码块
例子:
`
print('hello world!')
`
结果:
print('hello world!')
5、表格
表格:
例子:
| 居中 | 左对齐 | 右对齐 |
|:---------:|:--------------|------------:|
| 居中 | 左对齐 | 右对齐 |
| 居中 | 左对齐 | 右对齐 |
简约写法:
居中 | 左对齐 | 右对齐
:-:|:-|-:
居中 | 左对齐 | 右对齐
居中 | 左对齐 | 右对齐
结果:
居中 | 左对齐 | 右对齐 |
---|---|---|
居中 | 左对齐 | 右对齐 |
居中 | 左对齐 | 右对齐 |
6、链接
内链式
例子:
[百度](http://www.baidu.com/)
结果:
百度
引用式
例子:
[百度]:http://www.baidu.com
结果:
[百度]:http://www.baidu.com
邮箱链接
例子:
<xxx@qq.com>
结果:
xxx@qq.com
7、图片
内链式
例子:
![小狗](https://upload-images.jianshu.io/upload_images/13692171-156100c13177361d.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240
'小狗一只')
结果:
引用式
例子:
[小猫]:https://upload-images.jianshu.io/upload_images/13692171-7c09feaeae1bb13f.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240 '小猫一只'
结果:
[小猫]:https://upload-images.jianshu.io/upload_images/13692171-7c09feaeae1bb13f.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240 '小猫一只'
图片带有链接
例子:
[![百度](https://upload-images.jianshu.io/upload_images/13692171-7c09feaeae1bb13f.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240 '小猫一只')](http://www.baidu.com)
8、序表
无序(+、-或*)
例子:
* 一
+ 二
- 三
结果:
- 一
- 二
- 三
有序
例子:
1. 一
2. 二
3. 三
结果:
- 一
- 二
- 三
序表嵌套
例子:
* one
* two
* three
1.one
2.two
3.three
结果:
- one
- two
- three
1.one
- two
- three
9、清单
清单选项表
例子:
- [x] 选项一
- [ ] 选项二
结果:
- [x] 选项一
- [ ] 选项二
10、引用(>>>\)
例子:
>hello
>>hello
>>>hello
>>>>>>>hello
结果:
hello
hello
hello
hello
11、锚点
例子:
[公式标题锚点](#1)
结果:
公式标题锚点
12、脚注
例子:
MarkDown[^1]
[^1]:MarkDown是一种纯文本标记
语言
结果:
MarkDown[1]
13、Github表情
https://www.webpagefx.com/tools/emoji-cheat-sheet/
例子:
:bowtie::smiley:
14、分隔符
例子:
***
1232345
---
***
abcdefg
---
结果:
1232345
abcdefg
day01总结
今天第一天,初步了解了Python语言。安装了相关软件,学习使用Markdown语法,并发布了第一篇简书文章。
-
MarkDown是一种纯文本标记
语言 ↩