标记
Mr.Hope ... 小于 1 分钟
# 标记
让你的 VuePress 站点中的 Markdown 文件支持标记。
# 配置
module.exports = {
plugins: [
[
"md-enhance",
{
// 开启标记
mark: true,
},
],
],
};
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
# 语法
使用 == ==
进行标记。请注意两边需要有空格。
# 案例
Mr.Hope 十分 帅
Mr.Hope ==十分== 帅
1