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 |
Beta Was this translation helpful? Give feedback.
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. |
Beta Was this translation helpful? Give feedback.
-
Have you made any progress on this @eykrehbein ? Maybe it can be used together with https://www.npmjs.com/package/markdown-it-texmath? |
Beta Was this translation helpful? Give feedback.
Because everything is serialized to markdown you need to include
toMarkdown
andparseMarkdown
methods, 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.