pandoc-docker
pandoc-docker copied to clipboard
Does this image include pandoc-crossref package?
Hi,thanks for you work. Does this image include pandoc-crossref package?
No it does not. To include it, one line has to be changed.
# install pandoc
RUN cabal update && cabal install pandoc-${PANDOC_VERSION}
Add at the end pandoc-crossref
. The result:
# install pandoc
RUN cabal update && cabal install pandoc-${PANDOC_VERSION} pandoc-crossref