latex2mathml #435
Tsai002
started this conversation in
Feature requests
Replies: 2 comments
-
I'd be happy to accept a PR that added (optional) integration! |
Beta Was this translation helpful? Give feedback.
0 replies
-
In my private project, I just convert let input = latex2mathml::replace(input)?;
if input.contains("<math") && input.contains("</math>") {
// skip the math part && convert to md
} else {
// convert to md
} That works, but looks awful. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
https://docs.rs/crate/latex2mathml/ is very easy to use. And cmark-syntax has integrated it https://github.com/grego/cmark-syntax/blob/057ed25507735aa013b55a0650845da5ff2c368e/src/lib.rs#L74, I hope comrak can support it.
Beta Was this translation helpful? Give feedback.
All reactions