]> git.donarmstrong.com Git - lilypond.git/commitdiff
(txt2html): add utf-8 marker.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 10 Jun 2005 14:15:31 +0000 (14:15 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 10 Jun 2005 14:15:31 +0000 (14:15 +0000)
ChangeLog
stepmake/bin/text2html.py

index a426152b304093fae14d22f7ff26d2e6953cf40e..6db0860dea38dc558ecc50b73ecb5cb11b5b5269 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2005-06-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
+       * stepmake/bin/text2html.py (txt2html): add utf-8 marker. 
+
        * flower/string-convert.cc (precision_string): >? fix.
 
        * scm/ps-to-png.scm (make-ps-images): search-gs for multipage too.
index c2424deebae123b816f415ddd9223a9a4bf4589b..80de4094506382eb78e157962e7113ce13442180 100644 (file)
@@ -31,7 +31,13 @@ for a in sys.argv[1:]:
            pass
 
        s = r"""
-<html><body><pre>
+
+<html>
+<head>
+  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
+</head>
+
+<body><pre>
 %s
 </pre></body></html>
 """ % txt2html (open (a).read ())