Configure Markdown options in v0.7.0
mainIn version 0.7.0, markdown configuration options (such as breaks) are no longer passed in the main Editor configuration object. Instead, use the .configure() method on the Markdown extension.
const editor = new Editor({
extensions: [
+ Markdown.configure({
+ breaks: true,
+ })
],
- markdown: {
- breaks: true,
- },
})