summary refs log tree commit diff
path: root/bin/hilex/hilex.h
diff options
context:
space:
mode:
Diffstat (limited to 'bin/hilex/hilex.h')
-rw-r--r--bin/hilex/hilex.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/bin/hilex/hilex.h b/bin/hilex/hilex.h
index e997b881..1e830888 100644
--- a/bin/hilex/hilex.h
+++ b/bin/hilex/hilex.h
@@ -51,7 +51,13 @@ extern const struct Lexer LexMdoc;
 extern const struct Lexer LexText;
 
 #define ENUM_OPTION \
-	X(Monospace, "monospace")
+	X(Anchor, "anchor") \
+	X(CSS, "css") \
+	X(Document, "document") \
+	X(Inline, "inline") \
+	X(Monospace, "monospace") \
+	X(Tab, "tab") \
+	X(Title, "title")
 
 enum Option {
 #define X(option, key) option,
@@ -70,4 +76,5 @@ struct Formatter {
 
 extern const struct Formatter FormatANSI;
 extern const struct Formatter FormatDebug;
+extern const struct Formatter FormatHTML;
 extern const struct Formatter FormatIRC;