From 6852912fbb872b5c266c921e8be875f360d20350 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Tue, 26 Nov 2019 19:07:20 -0600 Subject: [PATCH] feat(bin): set charset to utf8 --- src/bin/http_of_dir.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/http_of_dir.ml b/src/bin/http_of_dir.ml index d541369a..792e6132 100644 --- a/src/bin/http_of_dir.ml +++ b/src/bin/http_of_dir.ml @@ -49,7 +49,7 @@ let html_list_dir ~top ~parent d : string = Array.sort compare entries; let body = Buffer.create 256 in (* TODO: breadcrumbs for the path, each element a link to the given ancestor dir *) - Printf.bprintf body {| http_of_dir %S + Printf.bprintf body {| http_of_dir %S

Index of %S

|} top d;