summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2008-09-13 20:23:23 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2008-09-13 20:23:23 +0000
commit2d99c21ecc7f719f23ae7b42e5396011352172a0 (patch)
tree7d80010f3b98cbda2dab4c089c3f1048f5edc1a1 /INSTALL
parent1a7e1817781f052c86de5c92e9f72c4ee8350635 (diff)
INSTALL: Documented citeproc-hs support.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1444 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL26
1 files changed, 26 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
index a7e7f6a3b..7937f3b00 100644
--- a/INSTALL
+++ b/INSTALL
@@ -184,6 +184,32 @@ If you have already built pandoc, you may need to do a `make clean` or
[`highlighting-kate` library]: http://johnmacfarlane.net/highlighting-kate
+Optional citeproc support
+-------------------------
+
+Pandoc can optionally be compiled with support for bibliographic citations
+using Andrea Rossato's [`citeproc-hs` library]. This allows you
+to specify citations in markdown using an intuitive syntax (for example,
+`[jones2005@p. 3; smith2006]`). These are automatically changed into
+appropriately styled citations in the output, and a bibliography is
+added. The bibliography data and style information are taken from XML
+files that must be specified on the command line. (Note: `citeproc-hs`
+support is experimental, and the interface may change in the future.)
+
+If you are using Cabal to compile pandoc, specify the `citeproc` flag in
+the configure step:
+
+ runhaskell Setup configure -fciteproc
+
+If you are using the Makefile:
+
+ CABALOPTS=-fciteproc make
+
+If you have already built pandoc, you may need to do a `make clean` or
+`runhaskell Setup clean` first.
+
+[`citeproc-hs` library]: http://code.haskell.org/citeproc-hs/
+
Other targets
-------------