markdown工具Mou小抄
1 各级字体大小,使用#
This is H1
This is H2
This is H3
This is H4
This is H5
This is H6
2 插入图片或链接 []()
or
图片需要在最前面加!
3 字体加强及倾斜,使用*
strong not equal strong
emphasize not equal emphasis
4 引用 >
Live or die, make your choice
5 代码
行内代码使用 ``,比如$ sh run.sh
多行代码使用缩进
import sys
sys.setdefaultencoding('utf-8')
或者```
1 | import sys |
6 列表
无序列表使用*或者 -
- num1
- num2
- num3
有序列表使用 1.
- num1
- num2
- num3
7 快捷键
加强:选中文本 cmd+B
倾斜:选中文本 cmd+I
行内代码:选中文本 cmd+K
选中行:shift+cmd+L
选中全文:cmd+A
自动补齐:esc
导出html:option+cmd+e
导出pdf:option+cmd+p
8 后记
此篇小抄主要来自于安装Mou之后的使用说明文档,为快速上手就将
最简单最常用的部分摘抄过来,加深印象,Mou官网在这里http://25.io/mou/
评论
TwikooValine