summary refs log tree commit diff
path: root/bin/hilex/hilex.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-01-12 21:40:11 -0500
committerJune McEnroe <june@causal.agency>2021-01-12 21:40:11 -0500
commit47940e2a528e30903c68abb6c0246cb86772d389 (patch)
tree63fe27534734a611699c1eeff82f2f0090febcfa /bin/hilex/hilex.h
parentAdd htagml -i (diff)
downloadsrc-47940e2a528e30903c68abb6c0246cb86772d389.tar.gz
src-47940e2a528e30903c68abb6c0246cb86772d389.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.h4
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")