1.5 KiB
1.5 KiB
title, createTime, permalink, badge
| title | createTime | permalink | badge | ||||
|---|---|---|---|---|---|---|---|
| Markdown Enhance | 2025/10/09 20:25:36 | /en/config/plugins/markdown-enhance/ |
|
::: danger Removed from theme starting from 1.0.0-rc.154
The functionality provided by vuepress-plugin-md-enhance that
was explicitly supported in the theme has been migrated to other plugins in the
vuepress/ecosystem repository. Therefore, the theme will safely remove the vuepress-plugin-md-enhance plugin starting from 1.0.0-rc.154.
:::
Overview
Provides Markdown enhancement features.
Related plugin: vuepress-plugin-md-enhance
Default configuration:
import { defineUserConfig } from 'vuepress'
import { plumeTheme } from 'vuepress-theme-plume'
export default defineUserConfig({
theme: plumeTheme({
markdown: {
// The following options are not enabled by default in the theme,
// Please configure them explicitly in the theme if needed
// stylize: true, // Style inline syntax to create code snippets
// playground: true, // Interactive playgrounds
// kotlinPlayground: true, // Kotlin interactive playgrounds
// vuePlayground: true, // Vue interactive playgrounds
// sandpack: true, // Sandpack interactive playgrounds
},
}),
})
Configuration
For detailed configuration, please refer to vuepress-plugin-md-enhance.