Commit 04a8ce9a authored by albert-github's avatar albert-github

Command \< and \> are not properly shown in section headers (and consequently in index)

In the pdf version of the doxygen manual (version 1.8.6) the commands \< and \> are shown as < and >
Tests (on the doxygen manual) revealed that the exception rules were nor required.
parent cc78b12b
......@@ -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