aboutsummaryrefslogtreecommitdiffstats
path: root/README.rst
diff options
context:
space:
mode:
authorMarc Tamlyn <marc.tamlyn@gmail.com>2012-07-27 01:30:27 -0700
committerMarc Tamlyn <marc.tamlyn@gmail.com>2012-07-27 01:30:27 -0700
commitbf9e3288d78ffebc959c0a898c4c05c2db6a383d (patch)
tree6eea45aa3a68fece4c9ae6add826eed50920c380 /README.rst
parentfab23c4fc12d667575064835c82146eb8f88f896 (diff)
parentfd3c890e2ecd2b5448ee7ca65503c2b31ac92ddb (diff)
downloaddjango-wkhtmltopdf-bf9e3288d78ffebc959c0a898c4c05c2db6a383d.tar.gz
django-wkhtmltopdf-bf9e3288d78ffebc959c0a898c4c05c2db6a383d.tar.bz2
django-wkhtmltopdf-bf9e3288d78ffebc959c0a898c4c05c2db6a383d.zip
Merge pull request #9 from ecometrica/master
Refactoring of django-wkhtmltopdf
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/README.rst b/README.rst
index ee7a099..925f543 100644
--- a/README.rst
+++ b/README.rst
@@ -34,3 +34,13 @@ specific execuatable:
e.g.: in ``settings.py``::
WKHTMLTOPDF_CMD = '/path/to/my/wkhtmltopdf'
+
+You may also set
+``WKHTMLTOPDF_CMD_OPTIONS``
+in ``settings.py`` to a dictionary of default command-line options.
+
+The default is::
+
+ WKHTMLTOPDF_CMD_OPTIONS = {
+ 'quiet': True,
+ }