diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2015-11-01 15:15:17 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2015-11-01 15:15:17 (GMT) |
commit | 5487f855ad12d0b7f3ba70aab72fd2debedae16d (patch) | |
tree | be6d1f5945ca4f3e7cced3ae423e558d3f7a24d4 /src/htmlentity.cpp | |
parent | e44780a7579ca865cc52801e920b1d20d2a3b438 (diff) | |
download | Doxygen-5487f855ad12d0b7f3ba70aab72fd2debedae16d.zip Doxygen-5487f855ad12d0b7f3ba70aab72fd2debedae16d.tar.gz Doxygen-5487f855ad12d0b7f3ba70aab72fd2debedae16d.tar.bz2 |
Bug 756604 - Unable to prevent a numbered list
Diffstat (limited to 'src/htmlentity.cpp')
-rw-r--r-- | src/htmlentity.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/htmlentity.cpp b/src/htmlentity.cpp index c4c601f..ff3c574 100644 --- a/src/htmlentity.cpp +++ b/src/htmlentity.cpp @@ -312,7 +312,9 @@ static struct htmlEntityInfo { SYM(Percent), "%", "%", "%", "%", "\\%", "%", "%", { "%", DocSymbol::Perl_char }}, { SYM(Pipe), "|", "|", "|", "|", "$|$", "|", "|", { "|", DocSymbol::Perl_char }}, { SYM(Quot), "\"", "\"", "\"", """, "\"", "\"", "\"", { "\"", DocSymbol::Perl_char }}, - { SYM(Minus), "-", "-", "-", "-", "-\\/", "-", "-", { "-", DocSymbol::Perl_char }} + { SYM(Minus), "-", "-", "-", "-", "-\\/", "-", "-", { "-", DocSymbol::Perl_char }}, + { SYM(Plus), "+", "+", "+", "+", "+", "+", "+", { "+", DocSymbol::Perl_char }}, + { SYM(Dot), ".", ".", ".", ".", ".", ".", ".", { ".", DocSymbol::Perl_char }} }; static const int g_numHtmlEntities = (int)(sizeof(g_htmlEntities)/ sizeof(*g_htmlEntities)); |