diff options
author | Arun Isaac | 2022-03-10 20:37:56 +0530 |
---|---|---|
committer | Arun Isaac | 2022-03-10 20:37:56 +0530 |
commit | 40c17373e305670ca70beb297523592ac10d89e1 (patch) | |
tree | c44584beb417416622d5014e31a70b78d378cac5 | |
parent | 315d2ce5d6c87850b97b60f8191247b7387107ef (diff) | |
download | skribilo-40c17373e305670ca70beb297523592ac10d89e1.tar.gz skribilo-40c17373e305670ca70beb297523592ac10d89e1.tar.lz skribilo-40c17373e305670ca70beb297523592ac10d89e1.zip |
html: Set UTF-8 as the default charset.
* src/guile/skribilo/engine/html.scm (html-engine): Set UTF-8 as the
default charset.
-rw-r--r-- | src/guile/skribilo/engine/html.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/guile/skribilo/engine/html.scm b/src/guile/skribilo/engine/html.scm index 25eeb1b..7e4897b 100644 --- a/src/guile/skribilo/engine/html.scm +++ b/src/guile/skribilo/engine/html.scm @@ -142,7 +142,7 @@ :custom `(;; the icon associated with the URL (favicon #f) ;; charset used - (charset "ISO-8859-1") + (charset "UTF-8") ;; enable/disable Javascript (javascript #f) ;; user html head |