1.0.6 • Published 1 year ago

remark-plugin-vue-live v1.0.6

Weekly downloads
12
License
MIT
Repository
github
Last release
1 year ago

remark-plugin-vue-live

.github/workflows/ci.yml npm.io npm.io semantic-release

A remark plugin make markdown example plugin.

Usage Example

const remark = require("remark");
const plugin = require("remark-plugin-vue-live");

remark()
  .use(plugin, { liveFilter: (lang) => /pizza/.test(lang) })
  .process(
    `
\`\`\`pizza
<comp/>
\`\`\`
    `,
    (err, file) => {
      console.log(file);
    }
  );