Fix switch indentation.

This commit is contained in:
Thibaut Cuvelier 2024-09-28 16:40:36 +02:00
parent cb88a362ea
commit a06528ee2a

View File

@ -236,14 +236,14 @@ void InsetMathChar::mathmlize(MathMLStream & ms) const
{ {
std::string entity; std::string entity;
switch (char_) { switch (char_) {
case '<': entity = "&lt;"; break; case '<': entity = "&lt;"; break;
case '>': entity = "&gt;"; break; case '>': entity = "&gt;"; break;
case '&': entity = "&amp;"; break; case '&': entity = "&amp;"; break;
case ' ': { case ' ': {
ms << from_ascii("&#0160;"); ms << from_ascii("&#0160;");
return; return;
} }
default: break; default: break;
} }
if (ms.inText()) { if (ms.inText()) {