Fxy typo in XHTML output (bug #10124)

There was a simple typo that did ouput the slash before the closing tag
instead of inside the closing tag.
This commit is contained in:
Georg Baum 2016-05-22 17:32:04 +02:00
parent 6280d8f261
commit ff4668621b

View File

@ -1008,7 +1008,7 @@ void MathMacro::mathmlize(MathStream & os) const
docstring const xmlname = d->macro_->xmlname();
if (!xmlname.empty()) {
char const * type = d->macro_->MathMLtype();
os << '<' << type << "> " << xmlname << " /<"
os << '<' << type << "> " << xmlname << " </"
<< type << '>';
return;
}