Markdown 基本语法

参考

标题

1
2
3
# 一级标题
## 二级标题
### 三级标题

一级标题

二级标题

三级标题


常用

无序列表

1
2
3
* a
* b
* c
  • a
  • b
  • c

有序列表

1
2
3
1. a
2. b
3. c
  1. a
  2. b
  3. c

表格

1
2
3
4
5
| 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

分割线

1
*** 或 ---

图片

![description]($path)
打赏


链接

[google](https://www.google.com)
google


语法高亮

1
echo "hexo highlight"
1
2
3
class Hello implements java.io.Serializable{
private final String world = "World!";
}