diff options
author | albert-github <albert.tests@gmail.com> | 2018-11-07 18:44:49 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-11-07 18:44:49 (GMT) |
commit | 8292eeebd57aea339ea4ebad2267402d1183b097 (patch) | |
tree | 1487f7c6e6237bf119f339b2f337024a33209adc /src/htmlentity.cpp | |
parent | 9440d7ce0b31749b6bbb13e70e2f7ed501505c7e (diff) | |
download | Doxygen-8292eeebd57aea339ea4ebad2267402d1183b097.zip Doxygen-8292eeebd57aea339ea4ebad2267402d1183b097.tar.gz Doxygen-8292eeebd57aea339ea4ebad2267402d1183b097.tar.bz2 |
Create command for escaped equal sign
This command writes an equal sign (`=`) to the output. This character sequence has to be escaped in some cases, because it is used in Markdown header processing.
Diffstat (limited to 'src/htmlentity.cpp')
-rw-r--r-- | src/htmlentity.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/htmlentity.cpp b/src/htmlentity.cpp index 3d95705..bc3f7de 100644 --- a/src/htmlentity.cpp +++ b/src/htmlentity.cpp @@ -314,7 +314,8 @@ static struct htmlEntityInfo { SYM(Quot), "\"", "\"", "\"", """, "\"", "\"", "\"", { "\"", DocSymbol::Perl_char }}, { SYM(Minus), "-", "-", "-", "-", "-\\/", "-", "-", { "-", DocSymbol::Perl_char }}, { SYM(Plus), "+", "+", "+", "+", "+", "+", "+", { "+", DocSymbol::Perl_char }}, - { SYM(Dot), ".", ".", ".", ".", ".", ".", ".", { ".", DocSymbol::Perl_char }} + { SYM(Dot), ".", ".", ".", ".", ".", ".", ".", { ".", DocSymbol::Perl_char }}, + { SYM(Equal), "=", "=", "=", "=", "=", "=", "=", { "=", DocSymbol::Perl_char }} }; static const int g_numHtmlEntities = (int)(sizeof(g_htmlEntities)/ sizeof(*g_htmlEntities)); |