Is there a way to integrate prosemirror-math?
#424
|
Hey, I recently stumbled over the prosemirror-math library, which enables users to write Latex math inside of Prosemirror. Is there a way to integrate such plugins? I tried several things, e.g. trying to insert it as Am I missing something? Best, Eyk |
Replies: 2 comments
|
Because everything is serialized to markdown you need to include I would accept a PR for integration of this module into the repo by default, math support is often asked for. |
|
Have you made any progress on this @eykrehbein ? Maybe it can be used together with https://www.npmjs.com/package/markdown-it-texmath? |
Because everything is serialized to markdown you need to include
toMarkdownandparseMarkdownmethods, there probably needs to be a custom markdown-it plugin too – CodeFence is a good starting point for an extension as the functionality is very similar.I would accept a PR for integration of this module into the repo by default, math support is often asked for.