上下角标
让你的 VuePress 站点中的 Markdown 文件支持上下角标。
配置
module.exports = {
plugins: [
[
"markdown-enhance",
{
// Enable Subscript
sub: true,
// Enable Superscript
sup: true,
},
],
],
};
语法
- Use
^ ^
to mark the superscript. - Use
~ ~
to mark the subscript.
示例
- 19th
- H2O
- 19^th^
- H~2~O