-
-
Notifications
You must be signed in to change notification settings - Fork 62
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
parser: latex support? #41
Comments
In #49 I suggest adding plugin support. With that, one of these might be helpful. |
Here's a POC of using LaTeX Live: https://blorg-latex.hao.systems/using-latex |
@LaloHao Is this all done with the katex import? I.e. did this require zero changes to orgajs? I mean you didn’t have to render the latex to the AST at all right? |
Yes, you don't need to change orgajs internals, you can do it on your own project There are 2 commits on my example repository:
How to:
require('katex/dist/katex.min.css'); |
希望:
输入org:
html
<div class="section"><h1>test</h1><p>$a+b$</p><p>\[a+b+\alpha\]</p></div>
The text was updated successfully, but these errors were encountered: