summaryrefslogtreecommitdiffstats
path: root/src/cmdmapper.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-11-07 18:44:49 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-11-07 18:44:49 (GMT)
commit8292eeebd57aea339ea4ebad2267402d1183b097 (patch)
tree1487f7c6e6237bf119f339b2f337024a33209adc /src/cmdmapper.cpp
parent9440d7ce0b31749b6bbb13e70e2f7ed501505c7e (diff)
downloadDoxygen-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/cmdmapper.cpp')
-rw-r--r--src/cmdmapper.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cmdmapper.cpp b/src/cmdmapper.cpp
index 71da3f3..1de8c85 100644
--- a/src/cmdmapper.cpp
+++ b/src/cmdmapper.cpp
@@ -111,6 +111,7 @@ CommandMap cmdMap[] =
{ "\\", CMD_BSLASH },
{ "@", CMD_AT },
{ "<", CMD_LESS },
+ { "=", CMD_EQUAL },
{ ">", CMD_GREATER },
{ "&", CMD_AMP },
{ "$", CMD_DOLLAR },