-
Notifications
You must be signed in to change notification settings - Fork 4
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
Support Documenter.jl style LaTeX-math-fencing #9
Comments
This is unrelated content to the extension. This can be easily achieved by mimicking vscode-python-highlight-cell-splitter and this extension. It will likely be less than 40 lines in the end, constituting a standalone new extension. I am not interested in it. |
Okay! Very understandable. Thanks for explaining. |
if you want to highlight them as a raw string. you could make a new extrension and match them and mark them as raw string by syntaxes json. |
have added a feature
"markdown-everywhere.preview-mode-inject": [
{"language":"julia","path":".*","beforeSource":" return args.src.replace(/```math/g,'$$$$\\n').replace(/```/g,'\\n$$$$').replace(/``/g,'$').replace(/\\\\\\\\/g,'\\\\') "}
], |
Thanks for your work on this extension. It's really nice seeing this inline in vscode.
Documenter.jl encourages LaTeX-math to be fenced with double backticks `` or else as ```math. This seems to currently be unsupported. See https://documenter.juliadocs.org/stable/man/latex/
The text was updated successfully, but these errors were encountered: