UNPKG

docsify

Version:

A magical documentation generator.

14 lines (9 loc) 282 B
import parser from './parser'; const install = function(hook, vm) { hook.beforeEach(content => { const { attributes, body } = parser(content); vm.frontmatter = attributes; return body; }); }; $docsify.plugins = [].concat(install, $docsify.plugins);