summary refs log tree commit diff
path: root/bin/hilex/hilex.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-12-29 00:55:47 -0500
committerJune McEnroe <june@causal.agency>2020-12-29 00:55:47 -0500
commitcc1cb6c36ecb93e7b9b458f4ea24d1f00480503b (patch)
treea52adc39db865db26dba4d640723376b62ec0b83 /bin/hilex/hilex.h
parentAdd hilex manual page (diff)
downloadsrc-cc1cb6c36ecb93e7b9b458f4ea24d1f00480503b.tar.gz
src-cc1cb6c36ecb93e7b9b458f4ea24d1f00480503b.zip
Add hilex HTML output
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;