83
Introducing Milkdown: A plugin driven WYSIWYG markdown editor
Milkdown is a lightweight but powerful WYSIWYG markdown editor. It's made up by two parts:
With this pattern you can enable or disable any custom syntax you like, such as table, latex and slash commands.
You can even create your own plugin to support your awesome idea.
You can even create your own plugin to support your awesome idea.
Milkdown is built on top of these tools:
We have some pieces for you to create a very minimal editor:
We use material icon and Roboto Font in our theme.
Make sure to include them for having the best experience.
import { Editor } from '@milkdown/core';
import { commonmark } from '@milkdown/preset-commonmark';
// import theme
import '@milkdown/theme-nord/lib/theme.css';
const root = document.body;
new Editor({ root }).use(commonmark).create();
For further information, please visit our website.
83