mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix MathML output of InsetMathDelim
Patch by lynx (https://www.lyx.org/trac/ticket/12050).
This commit is contained in:
parent
d9e455b61a
commit
372b32c0a6
@ -182,17 +182,13 @@ void InsetMathDelim::mathematica(MathematicaStream & os) const
|
||||
void InsetMathDelim::mathmlize(MathStream & ms) const
|
||||
{
|
||||
ms << "<" << from_ascii(ms.namespacedTag("mo")) << " form='prefix' fence='true' stretchy='true' symmetric='true'>"
|
||||
<< "<" << from_ascii(ms.namespacedTag("mrow")) << ">"
|
||||
<< convertDelimToXMLEscape(left_, ms.xmlMode())
|
||||
<< "</" << from_ascii(ms.namespacedTag("mrow")) << ">"
|
||||
<< "</" << from_ascii(ms.namespacedTag("mo")) << ">"
|
||||
<< "\n"
|
||||
<< cell(0)
|
||||
<< "\n"
|
||||
<< "<" << from_ascii(ms.namespacedTag("mo")) << " form='postfix' fence='true' stretchy='true' symmetric='true'>"
|
||||
<< "<" << from_ascii(ms.namespacedTag("mrow")) << ">"
|
||||
<< convertDelimToXMLEscape(right_, ms.xmlMode())
|
||||
<< "</" << from_ascii(ms.namespacedTag("mrow")) << ">"
|
||||
<< "</" << from_ascii(ms.namespacedTag("mo")) << ">"
|
||||
<< "\n";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user