Disable LaTex #4752
tom-on-the-internet
started this conversation in
Bugs & Feedback
Disable LaTex
#4752
Replies: 1 comment 1 reply
-
|
hey, you can fix this by doing |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
styling.latex: falsedoes not disable LaTeX parsingDescription
Setting
"styling": { "latex": false }indocs.jsondoes not prevent the LaTeX parser from processing$characters. Content with two or more dollar signs on the same line is still interpreted as inline LaTeX.Steps to reproduce
"styling": { "latex": false }indocs.jsonsigns is parsed as LaTeX and rendered incorrectly
Expected behavior
With
latexset tofalse, dollar signs should be treated as literal text. No LaTeX parsing should occur.Actual behavior
The parser still treats
$49 per month, with an enterprise tier at $199as an inline math expression, producing broken output.Workaround
Escaping each dollar sign with a backslash (
\$13) works, but is impractical for content with frequent dollar amounts.Environment
docs.jsonwith"styling": { "latex": false }Beta Was this translation helpful? Give feedback.
All reactions