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 | 47940e2a528e30903c68abb6c0246cb86772d389 (patch) | |
tree | 63fe27534734a611699c1eeff82f2f0090febcfa /bin/hilex/hilex.h | |
parent | Add htagml -i (diff) | |
download | src-47940e2a528e30903c68abb6c0246cb86772d389.tar.gz src-47940e2a528e30903c68abb6c0246cb86772d389.zip |
Remove hacky tagging from hilex
God that makes the lexers so much simpler.
Diffstat (limited to '')
-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 3b796709..88a71a51 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") |