快捷键
- “#”对应标题
- ctrl + B 加粗
- ctrl + H 二级标题
- ctrl + shift + C 代码段
- ctrl + shift + K 行内代码
- ctrl + shift + L 无序列表
示例
加粗
斜体
ctrl + shift + C 代码段
static final int hash(Object key) {
int h;
return (key == null) ? 0 : (h = key.hashCode()) ^ (h >>> 16);
}
ctrl + shift + K 行内代码
static final int hash(Object key) { int h; return (key == null) ? 0 : (h = key.hashCode()) ^ (h >>> 16); }
表格语法
注:“:”为对齐方式
| 项目 | 价格 |
|---|---|
| iphone | $560 |
| mi | $340 |
| huawei | $440 |