Links Check
Check markdown links
Custom Container
Decorate Markdown content with styles
Tabs
Group similar content with tabs and switch them together
Code Tabs
Group similar codes with tabs
Custom Align
Let you decide to align paragraphs in the way you like
Attrs support
Allow you to add attributes for Markdown content
Superscript and subscript support
Your Markdown now support superscript and subscript
Footnote support
Your Markdown now support footnotes
Mark Support
Mark words and sentences in Markdown
Tasklist Support
Use tasklist in Markdown
image syntax
improve syntax to specify size and color scheme
Card Support
Add cards in Markdown
Chart Support
Display charts in Markdown
Flowchart Support
Create your flowchart in Markdown
Mermaid Support
Add mermaid diagram in Markdown
Tex Support
Markdown now have Tex Support so you can write your formula
Include snippet Support
split your docs with different parts and import them in Markdown
Playground Support
You can add playground in Markdown files
Vue playground Support
Show living vue component in playground
Code Demo Support
You can insert code demo easily
Presentation Support
You can insert presentation in Markdown files directly
Install
pnpm add -D vuepress-plugin-md-enhance
yarn add -D vuepress-plugin-md-enhance
npm i -D vuepress-plugin-md-enhance
Usage
// .vuepress/config.ts
import { mdEnhancePlugin } from "vuepress-plugin-md-enhance";
export default {
plugins: [
mdEnhancePlugin({
// your options
}),
],
};
// .vuepress/config.js
import { mdEnhancePlugin } from "vuepress-plugin-md-enhance";
export default {
plugins: [
mdEnhancePlugin({
// your options
}),
],
};
Migrating from V1
For details, see Migration Guide.