diff options
author | Bheesham Persaud <bheesham@users.noreply.github.com> | 2017-01-02 00:40:43 -0500 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-01-01 22:40:43 -0700 |
commit | 6c1afc04122ab5386c7c9d4cab6e68eda15d7f8e (patch) | |
tree | 7f62975f8a05795dd10bca383d4b280d4298505f | |
parent | 0865168e5add2234ac2bfd97689515eaf2fae7cc (diff) | |
download | pandoc-6c1afc04122ab5386c7c9d4cab6e68eda15d7f8e.tar.gz |
Indent code on the installation page. (#3335)
Previously, not all code on the installation page was
highlighted/wrapped in code blocks due to incorrect indentation.
-rw-r--r-- | INSTALL.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/INSTALL.md b/INSTALL.md index e2c1427d3..de2144982 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -160,16 +160,16 @@ The easiest way to build pandoc from source is to use [stack]: use the locale-sensitive unicode collation algorithm instead, specify the `unicode_collation` flag: - cabal install pandoc-citeproc -funicode_collation + cabal install pandoc-citeproc -funicode_collation Note that this requires the `text-icu` library, which in turn depends on the C library `icu4c`. Installation directions vary by platform. Here is how it might work on OSX with homebrew: - brew install icu4c - cabal install --extra-lib-dirs=/usr/local/Cellar/icu4c/51.1/lib \ - --extra-include-dirs=/usr/local/Cellar/icu4c/51.1/include \ - -funicode_collation text-icu pandoc-citeproc + brew install icu4c + cabal install --extra-lib-dirs=/usr/local/Cellar/icu4c/51.1/lib \ + --extra-include-dirs=/usr/local/Cellar/icu4c/51.1/include \ + -funicode_collation text-icu pandoc-citeproc 6. The `pandoc.1` man page will be installed automatically. cabal shows you where it is installed: you may need to set your `MANPATH` |