summary refs log tree commit diff
path: root/bin/hilex/html.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-12-29 22:39:16 -0500
committerJune McEnroe <june@causal.agency>2020-12-29 22:39:16 -0500
commit7c70322c7c8e88af93375b89146b0cd6cb8cc7f0 (patch)
tree109495ff8c3b181f871d38d8b5d34835d23a185c /bin/hilex/html.c
parentClean up C lexer (diff)
downloadsrc-7c70322c7c8e88af93375b89146b0cd6cb8cc7f0.tar.gz
src-7c70322c7c8e88af93375b89146b0cd6cb8cc7f0.zip
Add make lexer
This is kind of a mess and needs to be cleaned up against more careful
reading of the make grammar.
Diffstat (limited to 'bin/hilex/html.c')
-rw-r--r--bin/hilex/html.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/hilex/html.c b/bin/hilex/html.c
index 013b9e81..00c6740e 100644
--- a/bin/hilex/html.c
+++ b/bin/hilex/html.c
@@ -46,6 +46,7 @@ static const char *Style[ClassCap] = {
 	[Comment]       = "color: navy;",
 	[String]        = "color: teal;",
 	[StringFormat]  = "color: teal; font-weight: bold;",
+	[Interpolation] = "color: olive;",
 };
 
 static void styleTabSize(const char *tab) {
June McEnroe 2018-09-10Document key bindings in chatte.1June McEnroe 2018-09-08Document slash commands in chatte.1June McEnroe