milkdown
milkdown copied to clipboard
[RFC] MDX support.
Motivation
MDX is widely used now and it can help us to leverage awesome components built by different frameworks.
API
import { Counter, Image } from 'your-awesome-component'
Editor.make()
.config((ctx) => {
ctx.set(mdxMap, {
counter: Counter,
image: Image
})
})
.use(mdx)
.create();
WIP...
hello :) what is current progress of this issue? I want to contribute here.