diff options
author | Marc Tamlyn <marc.tamlyn@gmail.com> | 2012-08-31 12:01:07 +0100 |
---|---|---|
committer | Marc Tamlyn <marc.tamlyn@gmail.com> | 2012-08-31 12:01:07 +0100 |
commit | fbf32298a6808fcbfba698b594ab3aa44324131f (patch) | |
tree | 96e45052ab2e718c3c3f123af08e53612b1585d3 /docs/usage.rst | |
parent | e110907908b15340178203fe5029f2dde9024b28 (diff) | |
download | django-wkhtmltopdf-fbf32298a6808fcbfba698b594ab3aa44324131f.tar.gz django-wkhtmltopdf-fbf32298a6808fcbfba698b594ab3aa44324131f.tar.bz2 django-wkhtmltopdf-fbf32298a6808fcbfba698b594ab3aa44324131f.zip |
Add a note about unicode characters to docs.
Diffstat (limited to 'docs/usage.rst')
-rw-r--r-- | docs/usage.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/usage.rst b/docs/usage.rst index 7d031d1..0577241 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -87,3 +87,14 @@ and override the sections you need to. cmd_options = { 'margin-top': 3, } + +Unicode characters +------------------ + +Templates containing utf-8 characters should be supported. You will need to +ensure that you set the content type in your template file for `wkhtmltopdf` to +interpret it properly. + +.. code-block:: html + + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |