summaryrefslogtreecommitdiffstats
path: root/src/doctokenizer.l
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/doctokenizer.l
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/doctokenizer.l')
-rw-r--r--src/doctokenizer.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doctokenizer.l b/src/doctokenizer.l
index 6a703df..dd6a5d1 100644
--- a/src/doctokenizer.l
+++ b/src/doctokenizer.l
@@ -358,7 +358,7 @@ FILEMASK ({FILESCHAR}*{FILEECHAR}+("."{FILESCHAR}*{FILEECHAR}+)*)|{HFILEMASK}
LINKMASK [^ \t\n\r\\@<&${}]+("("[^\n)]*")")?({BLANK}*("const"|"volatile"){BLANK}+)?
VERBATIM "verbatim"{BLANK}*
SPCMD1 {CMD}([a-z_A-Z][a-z_A-Z0-9]*|{VERBATIM}|"--"|"---")
-SPCMD2 {CMD}[\\@<>&$#%~".+|-]
+SPCMD2 {CMD}[\\@<>&$#%~".+=|-]
SPCMD3 {CMD}form#[0-9]+
SPCMD4 {CMD}"::"
INOUT "inout"|"in"|"out"|("in"{BLANK}*","{BLANK}*"out")|("out"{BLANK}*","{BLANK}*"in")