From cc1cb6c36ecb93e7b9b458f4ea24d1f00480503b Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 29 Dec 2020 00:55:47 -0500 Subject: Add hilex HTML output --- bin/hilex/hilex.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bin/hilex/hilex.c') diff --git a/bin/hilex/hilex.c b/bin/hilex/hilex.c index b90efab1..d99b14bb 100644 --- a/bin/hilex/hilex.c +++ b/bin/hilex/hilex.c @@ -63,6 +63,7 @@ static const struct { } Formatters[] = { { &FormatANSI, "ansi" }, { &FormatDebug, "debug" }, + { &FormatHTML, "html" }, { &FormatIRC, "irc" }, }; @@ -135,6 +136,7 @@ int main(int argc, char *argv[]) { name = path; } } + if (!opts[Title]) opts[Title] = name; if (!lexer) lexer = matchLexer(name); if (!lexer && text) lexer = &LexText; if (!lexer) errx(EX_USAGE, "cannot infer lexer for %s", name); -- cgit 1.4.1