plugin-md-plus

Gungnir
2020-03-26
2 min

npm github license

Plugin @renovamen/vuepress-plugin-md-plus for adding more syntax to Markdown. Now supports:

# Install

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

# Configuration

Then configurate it in your .vuepress/config.js:

module.exports = {
  plugins: [
    [
      '@renovamen/vuepress-plugin-md-plus', {
        'all': false,  // Enable all features, this will override all the following options (default: false)
        'footnote': false,  // Enable footnote (default: false)
        'mark': false  //Enable mark (default: false)
      }
    ]
  ]
}

# Usage

# Footnote

Add footnotes for text[1]

Syntax
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."

Syntax
Yes, it's ==nine fifteen==.


  1. Write your footnote here. ↩︎