bytemd/scripts/plugin-template.md

507 B

@bytemd/plugin-{{name}}

npm

{{{desc}}}

Usage

import { Editor } from 'bytemd'
import {{importedName}} from '@bytemd/plugin-{{name}}'

new Editor({
  target: document.body,
  props: {
    plugins: [
      {{importedName}}(),
      // ... other plugins
    ],
  },
})

{{#options}}### Options

{{{options}}} {{/options}} {{#example}}## Example

{{{example}}} {{/example}}

License

MIT