上下角标

Mr.Hope ... 2021-2-25 Markdown
  • Subscript
  • Superscript
  • Markdown
小于 1 分钟

让你的 VuePress 站点中的 Markdown 文件支持上下角标。

# 配置





 

 




module.exports = {
  themeConfig: {
    mdEnhance: {
      // 启用下角标功能
      sub: true,
      // 启用上角标
      sup: true,
    },
  },
};
1
2
3
4
5
6
7
8
9
10

# 语法

  • 使用^ ^进行上角标标注。
  • 使用~ ~进行下角标标注。

# 案例

  • 19th
  • H2O
- 19^th^
- H~2~O
1
2