From 8833b6521d044b27da78d404085e8a148ba2229d Mon Sep 17 00:00:00 2001 From: Alexis King Date: Tue, 6 Jan 2015 14:10:53 -0800 Subject: [PATCH] Set the charset to utf-8 in the output html --- private/html.rkt | 1 + 1 file changed, 1 insertion(+) diff --git a/private/html.rkt b/private/html.rkt index 087c83a..7335bf6 100644 --- a/private/html.rkt +++ b/private/html.rkt @@ -62,6 +62,7 @@ (define %age (get-percentages/file path covered?)) `(html () (head () + (meta ([charset "utf-8"])) (link ([rel "stylesheet"] [type "text/css"] [href ,path-to-css]))) (body () ,@(%s->xexprs %age)