diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-07-22 12:29:22 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-07-22 12:48:57 +0200 |
commit | 21fb7ff35ba9b0a4df83bb3139a3f14e13cd29f9 (patch) | |
tree | d062f55856bd0169fac441e3200d2a96b4d0b79c | |
parent | 82ecae8a7069104698d491000b37629cd8d96fd8 (diff) | |
download | ffmpeg-21fb7ff35ba9b0a4df83bb3139a3f14e13cd29f9.tar.gz |
doc: declare encoding for texi2html.
It adds the following header to the HTML files:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
which helps some browsers to display correctly the few non-ASCII
characters in the doc.
-rw-r--r-- | doc/t2h.init | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/t2h.init b/doc/t2h.init index db5536bd88..1eb6658a6b 100644 --- a/doc/t2h.init +++ b/doc/t2h.init @@ -158,6 +158,9 @@ $AFTER_BODY_OPEN EOT } +# declare encoding in header +$IN_ENCODING = $ENCODING = "utf-8"; + # no navigation elements $SECTION_NAVIGATION = 0; # the same for texi2html 5.0 |