fix: prevent KaTeX from treating underscores as subscripts in plain text #6242
+54
−2
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes: #6196
PR Summary
This PR fixes an issue with KaTeX math rendering where underscores (
_) were incorrectly treated as subscripts. As a result, text such as$FOO_BARorvariable_namewas rendered in math mode, making code snippets and shell examples unreadable.The root cause was that
remark-mathplugin treats single-dollar expressions ($text$) as inline math by default. When users write shell variables like$FOO_BAR, it unintentionally enters math mode, and KaTeX interprets_as a subscript operator.Changes Made
Configuration Fix
singleDollarTextMath: falsein theremarkMathplugin.$is now treated as plain text, preventing accidental math rendering.$$...$$for display math.Files Modified
ui/desktop/src/components/MarkdownContent.tsx— added configuration and preprocessing logic.Trade-off
Note: Users must now use
$$...$$for math instead of$...$.Why this is acceptable:
remark-mathmaintainers and is adopted by other platforms (e.g., GitLab) facing similar issues.Type of Change
AI Assistance
Testing
Tested in the desktop UI with:
$...$$$...$$Screenshots / Demos (UX)
Before:
After: