summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 4aa0a8b..eba5640 100644
--- a/main.c
+++ b/main.c
@@ -639,7 +639,7 @@ Str html_head(Arena *m, Arena *l) {
 Str html_tail(Arena *m, Arena *l) {
 	(void)l;
 	Str h = S("");
-	if (opts.language.n) str_cat(&h, S("</html>"), m);
+	if (opts.language.n) str_cat(&h, S("</html>\n"), m);
 	return h;
 }