diff options
author | June McEnroe <june@causal.agency> | 2021-01-12 21:40:11 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-01-12 21:40:11 -0500 |
commit | 118a437acfb7b53d7522c71bd3f99982724b425b (patch) | |
tree | c6e3029a4a9497be67112e3a7333147d6e41ded1 /bin/hilex/hilex.h | |
parent | Add htagml -i (diff) | |
download | src-118a437acfb7b53d7522c71bd3f99982724b425b.tar.gz src-118a437acfb7b53d7522c71bd3f99982724b425b.zip |
Remove hacky tagging from hilex
God that makes the lexers so much simpler.
Diffstat (limited to 'bin/hilex/hilex.h')
-rw-r--r-- | bin/hilex/hilex.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/hilex/hilex.h b/bin/hilex/hilex.h index fa16f1b6..f01bc583 100644 --- a/bin/hilex/hilex.h +++ b/bin/hilex/hilex.h @@ -25,7 +25,6 @@ X(Number) \ X(Keyword) \ X(Identifier) \ - X(IdentifierTag) \ X(Macro) \ X(Comment) \ X(String) \ @@ -53,11 +52,10 @@ extern const struct Lexer LexMdoc; extern const struct Lexer LexText; #define ENUM_OPTION \ - X(Anchor, "anchor") \ - X(CSS, "css") \ X(Document, "document") \ X(Inline, "inline") \ X(Monospace, "monospace") \ + X(Style, "style") \ X(Tab, "tab") \ X(Title, "title") |