diff options
author | June McEnroe <june@causal.agency> | 2020-12-29 00:55:47 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-12-29 00:55:47 -0500 |
commit | 1e284c0b01081e731be45d1b29b49d4540ae3c2c (patch) | |
tree | 8e637d4fb2bcdcd31925ce383442e6f119d28691 /bin/hilex/hilex.h | |
parent | Add hilex manual page (diff) | |
download | src-1e284c0b01081e731be45d1b29b49d4540ae3c2c.tar.gz src-1e284c0b01081e731be45d1b29b49d4540ae3c2c.zip |
Add hilex HTML output
Diffstat (limited to '')
-rw-r--r-- | bin/hilex/hilex.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/bin/hilex/hilex.h b/bin/hilex/hilex.h index f0e49a78..870c8a3a 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; |