pandoc-docker icon indicating copy to clipboard operation
pandoc-docker copied to clipboard

Does this image include pandoc-crossref package?

Open meflyup opened this issue 8 years ago • 1 comments

Hi,thanks for you work. Does this image include pandoc-crossref package?

meflyup avatar Feb 18 '17 01:02 meflyup

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

rriemann avatar May 02 '18 12:05 rriemann