Hexo博客搭建(四):Markdown使用
文章目录
Hexo博客编写使用Markdown
编辑工具MacDown
Markdown语法
1. 标题
# 一级标题
## 二级标题
### 三级标题
以此类推,总共六级标题,建议在井号后加一个空格,这是最标准的 Markdown 语法。
2. 列表
- 或 * 变为无序列表
文字前加1. 2. 3. 符号要和文字之间加上一个字符的空格变为有序列表
3. 引用
只需要在文本前加入 > 这种尖括号(大于号)即可
列如
4. 图片与链接
图片为:![]()
链接为:[]()
5. 粗体与斜体
** 粗体 **
* 斜体 *
6. 表格
| 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 |
7.代码框
代码 (多加`为了显示效果)
``高亮`
8.修改图片布局
<div align=center><img src="http://img02.tooopen.com/images/20160509/tooopen_sy_161967094653.jpg" width="100" height="80" ></div>
9.修改字体颜色
<font color=red>参考:</font>