Replies: 1 comment 2 replies
-
I think you have to add The problem of The good news for you is that you can disable it by config the But I still recommend you to implement the parseMarkdown and toMarkdown part, it won't be complicated. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm using JSON format to store data for the editor. I need to implement the mention feature and need to add a custom
prosemirror node
(with some attrs), but don't want to add theremark node type
(don't want to extend the markdown syntax, markdown is only used as import, export).I found that I had to implement the
parseMarkdown
, and more importantly, theinlineSyncPlugin
would convert in real time as the content was entered, causing the customprosemirror node
to be replaced.I think
inlineSyncPlugin
limits the extensibility, would it be better to use theInput Rule
approach before? Inline sync plugin #695Milkdown has great support for Markdown, including syntax, input, and output. I want to store it in JSON format and extend it with more node types (not necessarily with markdown node types). Any ideas?
@Saul-Mirone
Beta Was this translation helpful? Give feedback.
All reactions