Update check for spacelike mml nodes to be more sensible. (mathjax/MathJax#3098) #1002
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.
This PR adjusts the way that
mspaceandmtextnodes are treated as spacelike. The spec says they are always spacelike, but that causes all kinds of problems, like making{\text{a}=\text{b}}being treated as an embellished operator. This interferes with line-breaking, for example, since a break at the equal sign will be moved to outside the text elements, which is not what is usually wanted. Similarly,is also an embellished operator, and so treated as a single unit.
This PR makes
mtextbe spacelike only if it consists only of spaces, and doesn't have styles or background colors. Similarly,mspacewill not be spacelike if it has an explicitlinebreakattribute (or if it is not breakable due to other attributes). This is not according to the spec, but makes more sense, particularly for how we usemtextandmspacein translating TeX to MathML.Resolves part of issue mathjax/MathJax#3098.