summaryrefslogtreecommitdiffstats
path: root/src/htmlentity.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2018-12-26 11:00:40 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2018-12-26 11:00:40 (GMT)
commit5c4d10eb3ec7a33a92658f191cfb29d52431ed13 (patch)
tree0ef12d83b79bfe1a4fedf555db21103724b33635 /src/htmlentity.cpp
parentb6662b61dd83be32481a1c83e092082e9d797f0a (diff)
parent8292eeebd57aea339ea4ebad2267402d1183b097 (diff)
downloadDoxygen-5c4d10eb3ec7a33a92658f191cfb29d52431ed13.zip
Doxygen-5c4d10eb3ec7a33a92658f191cfb29d52431ed13.tar.gz
Doxygen-5c4d10eb3ec7a33a92658f191cfb29d52431ed13.tar.bz2
Merge branch 'feature/bug_escaped_equal_sign' of https://github.com/albert-github/doxygen into albert-github-feature/bug_escaped_equal_sign
Diffstat (limited to 'src/htmlentity.cpp')
-rw-r--r--src/htmlentity.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/htmlentity.cpp b/src/htmlentity.cpp
index e95b817..543f86b 100644
--- a/src/htmlentity.cpp
+++ b/src/htmlentity.cpp
@@ -315,7 +315,8 @@ static struct htmlEntityInfo
{ SYM(Minus), "-", "-", "-", "-", "-\\/", "-", "-", { "-", DocSymbol::Perl_char }},
{ SYM(Plus), "+", "+", "+", "+", "+", "+", "+", { "+", DocSymbol::Perl_char }},
{ SYM(Dot), ".", ".", ".", ".", ".", ".", ".", { ".", DocSymbol::Perl_char }},
- { SYM(Colon), ":", ":", ":", ":", ":", ":", ":", { ":", DocSymbol::Perl_char }}
+ { SYM(Colon), ":", ":", ":", ":", ":", ":", ":", { ":", DocSymbol::Perl_char }},
+ { SYM(Equal), "=", "=", "=", "=", "=", "=", "=", { "=", DocSymbol::Perl_char }}
};
static const int g_numHtmlEntities = (int)(sizeof(g_htmlEntities)/ sizeof(*g_htmlEntities));