vuepress-theme-plume/docs/en/config/plugins/markdown-enhance.md
pengzhanbo 385059f214
docs: update en docs (#708)
* docs: update en docs

* chore: tweak

* chore: tweak

* chore: tweak
2025-10-09 15:46:05 +08:00

1.5 KiB

title, createTime, permalink, badge
title createTime permalink badge
Markdown Enhance 2025/10/09 20:25:36 /en/config/plugins/markdown-enhance/
type text
danger Deprecated

::: 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.