feat: switch to TeX style math blocks #5353
Merged
+405
−50
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.
Changelog Entry
Changed
$$
to Tex-style\[ \]
and\( \)
delimiters with improved rendering and error handling, in PR #5353, by @OEvgenyDescription
This PR enhances mathematical expression support in Web Chat by switching to TeX-style delimiters and introducing robust error handling.
Design
The implementation uses (
\[ \]
delimiters for block math,\( \)
delimiters for inline) with a custom tokenizer and HTML renderer. Block math is rendered infigure
tags while inline math usesspan
tags. Invalid expressions fall back topre
orcode
tags with an error state, allowing to apply styling if desired. The system uses Katex for rendering with MathML output and includes distinct styling for block and inline displays.Specific Changes
-
CHANGELOG.md
I have updated documentationReview Checklist
z-index
)package.json
andpackage-lock.json
reviewed