Skip to content

Commit 28026b4

Browse files
committed
CopyAsMathML: Use <mrow> not <row> for abs().
1 parent 875be4f commit 28026b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cells/AbsCell.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ wxString AbsCell::ToTeX() const {
124124
}
125125

126126
wxString AbsCell::ToMathML() const {
127-
return wxS("<row><mo>|</mo>") + m_innerCell->ListToMathML() +
128-
wxS("<mo>|</mo></row>\n");
127+
return wxS("<mrow><mo>|</mo>") + m_innerCell->ListToMathML() +
128+
wxS("<mo>|</mo></mrow>\n");
129129
// return wxS("<apply><abs/><ci>") + m_innerCell->ListToMathML() +
130130
// wxS("</ci></apply>");
131131
}

0 commit comments

Comments
 (0)