aboutsummaryrefslogtreecommitdiffstats
path: root/README.rst
diff options
context:
space:
mode:
authorSimon Law <simon.law@ecometrica.com>2012-07-20 15:58:55 -0400
committerSimon Law <simon.law@ecometrica.com>2012-07-20 15:58:55 -0400
commit803aba8859109e2c17e4bdf53126c058a2b60918 (patch)
treeb18aaa217f70cf23aa0bf3615860a282afed8249 /README.rst
parent6f7d08e0ec7b3c46ea6e9e6aae7fbc9327df29b4 (diff)
downloaddjango-wkhtmltopdf-803aba8859109e2c17e4bdf53126c058a2b60918.tar.gz
django-wkhtmltopdf-803aba8859109e2c17e4bdf53126c058a2b60918.tar.bz2
django-wkhtmltopdf-803aba8859109e2c17e4bdf53126c058a2b60918.zip
settings.WKHTMLTOPDF_CMD_OPTIONS sets default command-line options.
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,
+ }