Commit f6032def authored by Dimitri van Heesch's avatar Dimitri van Heesch

Merge pull request #117 from albert-github/feature/bug_docu_latex

Command \< and \> are not properly shown in section headers (and consequently in index)
parents 3dca0c9f 04a8ce9a
......@@ -6413,14 +6413,9 @@ void filterLatexString(FTextStream &t,const char *str,
break;
case '-': t << "-\\/";
break;
case '\\': if (*p=='<')
{ t << "$<$"; p++; }
else if (*p=='>')
{ t << "$>$"; p++; }
else
{ t << "\\textbackslash{}"; }
case '\\': t << "\\textbackslash{}";
break;
case '"': { t << "\\char`\\\"{}"; }
case '"': t << "\\char`\\\"{}";
break;
default:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment