-
-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
latex bug with multiple $ in a line #183
Comments
CommonMarker doesn't do any rendering of LaTeX, so I think this one's just for GitHub's own pipeline. |
really? There is a function called render latex https://github.com/gjtorikian/commonmarker/search?q=LaTeX |
Indeed! cmark-gfm, which we wrap, has $ printf '# Hello, world!\n\nLaTeX output from [cmark-gfm](https://github.com/github/cmark-gfm).' | cmark-gfm --to latex
\section{Hello, world!}
LaTeX output from \href{https://github.com/github/cmark-gfm}{cmark-gfm}.
$ We build all of cmark-gfm inside CommonMarker, so those source files you're seeing are just those. We don't (yet) expose the ability to render to LaTeX from CommonMarker, though it would be trivial to do so. This is all quite different to GitHub's offering, which is a MathJax-based (client-side) render. See Writing mathematical expressions in GitHub's docs for some information. |
I created this bug at the parent repo. But I believe an issue here may be useful too github/markup#1562
The text was updated successfully, but these errors were encountered: