PDF export cannot recognize the Math symbols grammar
Math grammar works well on my markdown preview, however, the PDF export cannot recognize math grammar. Hopefully, this issue can be fixed. By the way, thanks for your effort on this project.
Current output:
Correct one:
same issue +1
+1 anyone is aware of a extension which works with math grammar too?
I've found a solution on this thread.
You just need to copy the code below at the beginning of the MarkDown file, and then the extension MarkDown PDF should recognize and convert the math symbol.
<script type="text/javascript"
src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: {inlineMath: [['$', '$']]}, messageStyle: "none" });
</script>
I've found a solution on this thread.
You just need to copy the code below at the beginning of the MarkDown file, and then the extension MarkDown PDF should recognize and convert the math symbol.
Thanks, this works with pdf export but breaks markdown rendering in GitHub :(