Skip to content

Commit

Permalink
Command \< and \> are not properly shown in section headers (and cons…
Browse files Browse the repository at this point in the history
…equently 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.
  • Loading branch information
albert-github committed Feb 12, 2014
1 parent cc78b12 commit 04a8ce9
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 04a8ce9

Please sign in to comment.