summaryrefslogtreecommitdiffstats
path: root/src/doctokenizer.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2018-12-23 19:08:19 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2018-12-23 19:08:19 (GMT)
commitc3ee766d0ad5721c753581e7f87026614c0730e1 (patch)
tree7fa6ad9bbb5c3fcd8938bec8fea9b1b0a36e397f /src/doctokenizer.h
parent200353a0886f5ee20101b7af4b55af498adc495f (diff)
downloadDoxygen-c3ee766d0ad5721c753581e7f87026614c0730e1.zip
Doxygen-c3ee766d0ad5721c753581e7f87026614c0730e1.tar.gz
Doxygen-c3ee766d0ad5721c753581e7f87026614c0730e1.tar.bz2
Improved robustness of the emoji feature
Changes: - Use of `@emoji name` instead of `:name:` - Support only GitHub emojis (i.e. without spaces or special characters in the name) - Provided script to download images for LaTeX support. - XML output now has <emoji> tag with name an unicode sequence.
Diffstat (limited to 'src/doctokenizer.h')
-rw-r--r--src/doctokenizer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doctokenizer.h b/src/doctokenizer.h
index d72a674..8b8ca97 100644
--- a/src/doctokenizer.h
+++ b/src/doctokenizer.h
@@ -41,7 +41,6 @@ enum Tokens
TK_RCSTAG = 10,
TK_URL = 11,
TK_COMMAND_BS = 12, //! Command starting with `\`
- TK_EMOJI = 13,
RetVal_OK = 0x10000,
RetVal_SimpleSec = 0x10001,
@@ -167,5 +166,6 @@ void doctokenizerYYsetStateSetScope();
void doctokenizerYYsetStatePlantUMLOpt();
void doctokenizerYYsetStateOptions();
void doctokenizerYYsetStateBlock();
+void doctokenizerYYsetStateEmoji();
#endif