summaryrefslogtreecommitdiff
path: root/FAQ.txt
diff options
context:
space:
mode:
authorgoodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2004-07-22 01:09:25 +0000
committergoodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2004-07-22 01:09:25 +0000
commitdfa662976a656e9e05203b399de333e7dac44624 (patch)
treee3d46ea2ccc21306d68804729b689c75d5eddeb8 /FAQ.txt
parentd5de9b72f5fe2da7dbee0a9b36ef4bcf53a0e2cc (diff)
downloaddocutils-dfa662976a656e9e05203b399de333e7dac44624.tar.gz
updated
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@2443 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'FAQ.txt')
-rw-r--r--FAQ.txt9
1 files changed, 6 insertions, 3 deletions
diff --git a/FAQ.txt b/FAQ.txt
index 6515c93a1..c575a667e 100644
--- a/FAQ.txt
+++ b/FAQ.txt
@@ -724,7 +724,10 @@ the HTML data, which is encoded text. A discussion of text encodings
is beyond the scope of this FAQ; see one or more of these documents
for more info:
-* Chapters 3 and 4 of `Introduction to i18n
+* `UTF-8 and Unicode FAQ for Unix/Linux
+ <http://www.cl.cam.ac.uk/~mgk25/unicode.html>`_
+
+* Chapters 3 and 4 of `Introduction to i18n [Internationalization]
<http://www.debian.org/doc/manuals/intro-i18n/>`_
* `Python Unicode Tutorial
@@ -751,12 +754,12 @@ applicable to non-XMLish outputs).
If you're generating document fragments, the "Content-Type" metadata
(between the HTML ``<head>`` and ``</head>`` tags) must agree with the
-encoding of the rest of the document::
+encoding of the rest of the document. For UTF-8, it should be::
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Also, Docutils normally generates an XML declaration as the first line
-of the output. It must also match the document encoding::
+of the output. It must also match the document encoding. For UTF-8::
<?xml version="1.0" encoding="utf-8" ?>