plugin-md-plus

Gungnir
2020-03-26
2 min

npm github license

@renovamen/vuepress-plugin-md-plus 插件,可以为 Markdown 中加入更多语法和功能。目前支持:

# 安装

yarn add @renovamen/vuepress-plugin-md-plus
# or
npm install @renovamen/vuepress-plugin-md-plus

# 配置

你可以在 .vuepress/config.js 中一键启用所有功能:

themeConfig: {
  mdPlus: {
    all: true, // 全部启用
  }
}

也可以分别启用:

themeConfig: {
  mdPlus: {
    footnote: true,  // 脚注
    mark: true  // 高亮标记
  }
}

# 使用

# 脚注

给文字加上脚注[1]

语法
给文字加上脚注[^1]

[^1]: 脚注内容

# 高亮标记

高亮标记重要的内容:衬衫的价格是 九磅十五便士

语法
衬衫的价格是 ==九磅十五便士==


  1. 脚注内容 ↩︎