logo
努力加载中 ……

Superscript and Subscript

原创shentuzhigang11/3/2021, 7:42:57 AM61a few seconds

Let the Markdown file in your VuePress site support Subscript and Superscript.

Configuration

module.exports = {
  plugins: [
    [
      "markdown-enhance",
      {
        // Enable Subscript
        sub: true,
        // Enable  Superscript
        sup: true,
      },
    ],
  ],
};

Syntax

  • Use ^ ^ to mark the superscript.
  • Use ~ ~ to mark the subscript.

Demo

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