diff options
author | nyamatongwe <unknown> | 2010-07-17 10:07:09 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2010-07-17 10:07:09 +1000 |
commit | 0d1e972ad3cd1002bfb32fc3c61d1bc51900df67 (patch) | |
tree | 0b70b96a9e70898e36caaccadabd272f333c9e4e /include/SciLexer.h | |
parent | a50e4b8dc60572c170f7584b11b6a5be90860039 (diff) | |
download | scintilla-mirror-0d1e972ad3cd1002bfb32fc3c61d1bc51900df67.tar.gz |
Lexer for Txt2tags contributed by Eric Forgeot.
Diffstat (limited to 'include/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index f3b3ef838..3aa2c3853 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -111,6 +111,7 @@ #define SCLEX_NIMROD 96 #define SCLEX_SML 97 #define SCLEX_MARKDOWN 98 +#define SCLEX_TXT2TAGS 99 #define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 #define SCE_P_COMMENTLINE 1 @@ -1388,6 +1389,32 @@ #define SCE_MARKDOWN_CODE 19 #define SCE_MARKDOWN_CODE2 20 #define SCE_MARKDOWN_CODEBK 21 +#define SCE_TXT2TAGS_DEFAULT 0 +#define SCE_TXT2TAGS_LINE_BEGIN 1 +#define SCE_TXT2TAGS_STRONG1 2 +#define SCE_TXT2TAGS_STRONG2 3 +#define SCE_TXT2TAGS_EM1 4 +#define SCE_TXT2TAGS_EM2 5 +#define SCE_TXT2TAGS_HEADER1 6 +#define SCE_TXT2TAGS_HEADER2 7 +#define SCE_TXT2TAGS_HEADER3 8 +#define SCE_TXT2TAGS_HEADER4 9 +#define SCE_TXT2TAGS_HEADER5 10 +#define SCE_TXT2TAGS_HEADER6 11 +#define SCE_TXT2TAGS_PRECHAR 12 +#define SCE_TXT2TAGS_ULIST_ITEM 13 +#define SCE_TXT2TAGS_OLIST_ITEM 14 +#define SCE_TXT2TAGS_BLOCKQUOTE 15 +#define SCE_TXT2TAGS_STRIKEOUT 16 +#define SCE_TXT2TAGS_HRULE 17 +#define SCE_TXT2TAGS_LINK 18 +#define SCE_TXT2TAGS_CODE 19 +#define SCE_TXT2TAGS_CODE2 20 +#define SCE_TXT2TAGS_CODEBK 21 +#define SCE_TXT2TAGS_COMMENT 22 +#define SCE_TXT2TAGS_OPTION 23 +#define SCE_TXT2TAGS_PREPROC 24 +#define SCE_TXT2TAGS_POSTPROC 25 /* --Autogenerated -- end of section automatically generated from Scintilla.iface */ #endif |