Skip to content

Commit

Permalink
CopyAsMathML: Use <mrow> not <row> for abs().
Browse files Browse the repository at this point in the history
  • Loading branch information
daute committed Jan 5, 2025
1 parent 875be4f commit 28026b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cells/AbsCell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ wxString AbsCell::ToTeX() const {
}

wxString AbsCell::ToMathML() const {
return wxS("<row><mo>|</mo>") + m_innerCell->ListToMathML() +
wxS("<mo>|</mo></row>\n");
return wxS("<mrow><mo>|</mo>") + m_innerCell->ListToMathML() +
wxS("<mo>|</mo></mrow>\n");
// return wxS("<apply><abs/><ci>") + m_innerCell->ListToMathML() +
// wxS("</ci></apply>");
}
Expand Down

0 comments on commit 28026b4

Please sign in to comment.