@dwspace/vuepress-plugin-md-plus
TypeScript icon, indicating that this package has built-in type declarations

2.0.0-alpha.26 • Public • Published

@renovamen/vuepress-plugin-md-plus@next

npm docs license

A plugin for enhancing Markdown in VuePress 2. Now the following features are supported:

Demo

 

Install

# pnpm
pnpm install @renovamen/vuepress-plugin-md-plus@next
# yarn
yarn add @renovamen/vuepress-plugin-md-plus@next
# npm
npm install @renovamen/vuepress-plugin-md-plus@next

 

Configuration

You can enable all features simply by:

const { mdPlusPlugin } = require("@renovamen/vuepress-plugin-md-plus");

module.exports = {
  plugins: [
    mdPlusPlugin({
      all: true,  // Enable all features or not, this will rewrite all the following options (default: false)
    })
  ]
}

or enable them separately:

module.exports = {
  plugins: [
    mdPlusPlugin({
      footnote: true,  // Enable footnote or not (default: false)
      mark: true  // Enable mark or not (default: false)
    })
  ]
}

 

Usage

Footnote

Add footnotes for text[^1]

[^1]: Write your footnote here.

Mark

Mark important information: "Excuse me. Can you tell me how much the shirt is?" "Yes, it's ==nine fifteen==."

 

License

MIT

Package Sidebar

Install

npm i @dwspace/vuepress-plugin-md-plus

Weekly Downloads

0

Version

2.0.0-alpha.26

License

MIT

Unpacked Size

6.55 kB

Total Files

7

Last publish

Collaborators

  • tqdat