ByteMD plugin to parse frontmatter
import { Editor } from 'bytemd'
import frontmatter from '@bytemd/plugin-frontmatter'
new Editor({
target: document.body,
props: {
plugins: [
frontmatter(),
// ... other plugins
],
},
})
MIT