aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorCharlie Denton <charlie@meshy.co.uk>2012-02-24 10:28:10 +0000
committerCharlie Denton <charlie@meshy.co.uk>2012-02-24 10:28:10 +0000
commitf1c26baeddb539d5eecdb8cb8d41eb723f5205e2 (patch)
tree2557ebf17e99556a812397d45a07fa57d0a7b733 /README.md
parent0540b857306c39e5f7077cc6b7a8eebf51448935 (diff)
downloaddjango-wkhtmltopdf-f1c26baeddb539d5eecdb8cb8d41eb723f5205e2.tar.gz
django-wkhtmltopdf-f1c26baeddb539d5eecdb8cb8d41eb723f5205e2.tar.bz2
django-wkhtmltopdf-f1c26baeddb539d5eecdb8cb8d41eb723f5205e2.zip
Touched up README.
Diffstat (limited to 'README.md')
-rw-r--r--README.md32
1 files changed, 21 insertions, 11 deletions
diff --git a/README.md b/README.md
index 7ff49df..219d4e1 100644
--- a/README.md
+++ b/README.md
@@ -1,21 +1,31 @@
+django-wkhtmltopdf
+==================
+
+
Converts html to PDF
-====================
+--------------------
Provides a thin wrapper to the wkhtmltopdf binary from http://code.google.com/p/wkhtmltopdf/
-REQUIREMENTS
-============
-Install the binary http://code.google.com/p/wkhtmltopdf/
- This may require libfontconfig (on Ububtu: sudo aptitude install libfontconfig)
+Requirements
+------------
+
+Install the [wkhtmltopdf](http://code.google.com/p/wkhtmltopdf/) binary.
+This requires libfontconfig (on Ububtu: `sudo aptitude install libfontconfig`).
+
+
+Installation
+------------
+
+Run `pip install django-wkhtmltopdf`.
-INSTALLATION
-============
+Add `'wkhtmltopdf'` to `INSTALLED_APPS` in your `settings.py`.
-Add 'wkhtmltopdf' to INSTALLED_APPS.
+By default it will execute the first wkhtmltopdf command found on your `PATH`.
-By default it will execute the first wkhtmltopdf command found on your PATH.
-You can set WKHTMLTOPDF_CMD to a specific execuatable:
+If you can't add wkhtmltopdf to your `PATH`, you can set `WKHTMLTOPDF_CMD` to a
+specific execuatable:
-e.g.
+e.g.: in `settings.py`
WKHTMLTOPDF_CMD = '/path/to/my/wkhtmltopdf'