Markdown练习,
1、#开头的6级标题
这是一级标题
这是二级标题
这是三级标题
这是四级标题
这是五级标题
这是六级标题
2、-开头列表(符号与文本之间有空格)
- 列表1
- 列表1
- 列表1
- 列表二
- 列表二
- 列表二
3、超链接[简书] (http://www.jianshu.com)中括号和小括号之间没有空格
简书
4、图片![] (http://upload-images.jianshu.io/upload_images/7177443-04903f47562a0933.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/700)
5、引用 > 引用鲁迅先生的话,
引用鲁迅先生的话,
6、* 斜体 ,* 粗体 **,字与符号间没有空格
斜体 粗体
7、代码引用,需要引用代码时,如果引用的语句只有一段,不分行,可以用 ` 将语句包起来。
如果引用的语句为多行,可以将```置于这段代码的首行和末行。
<html>
<head>
<script>
console.log("hello world");
</script>
</head>
<body>
</body>
</html>
8、表格
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |