fix(math): use stretchable U+203E for both over and underbar accents (SD-2408)#2639
Merged
caio-pizzol merged 1 commit intomainfrom Mar 30, 2026
Conversation
β¦(SD-2408) U+2015 (horizontal bar) doesn't stretch in MathML, so underbars on compound expressions like x+y only appeared under a single letter. Use U+203E (overline) for both β it's stretchable and munder/mover controls the position.
Contributor
|
π This PR is included in vscode-ext v1.1.0-next.43 |
Contributor
|
π This PR is included in superdoc v1.24.0-next.42 The release is available on GitHub release |
Contributor
|
π This PR is included in superdoc-cli v0.5.0-next.42 The release is available on GitHub release |
Contributor
|
π This PR is included in superdoc-sdk v1.3.0-next.42 |
Contributor
|
π This PR is included in esign v2.2.0-next.3 The release is available on GitHub release |
Contributor
|
π This PR is included in template-builder v1.3.0-next.2 The release is available on GitHub release |
Contributor
|
π This PR is included in superdoc v1.24.0 The release is available on GitHub release |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
U+2015 (horizontal bar) from SD-2403 fixed invisible underbars but doesn't stretch in MathML β so compound expressions like
a + b + conly showed the bar under a single letter.Use U+203E (overline) for both over and under bars. It's stretchable in MathML and
<munder>/<mover>controls the position, so the same character works for both.SD-2408