Верхний и нижний индексы
Меньше 1 минуты
Пусть файл Markdown на вашем сайте VuePress поддерживает нижний и верхний индексы.
Конфиг
TS
// .vuepress/config.ts
import { defineUserConfig } from "vuepress";
import { hopeTheme } from "vuepress-theme-hope";
export default defineUserConfig({
theme: hopeTheme({
plugins: {
mdEnhance: {
// Enable Subscript
sub: true,
// Enable Superscript
sup: true,
},
},
}),
});
JS
// .vuepress/config.js
import { hopeTheme } from "vuepress-theme-hope";
export default {
theme: hopeTheme({
plugins: {
mdEnhance: {
// Enable Subscript
sub: true,
// Enable Superscript
sup: true,
},
},
}),
};
Синтаксис
- Используйте
^ ^
, чтобы отметить верхний индекс. - Используйте
~ ~
, чтобы отметить нижний индекс.
Демо
- 19th
- H2O
- 19^th^
- H~2~O