gnu: Add pandoc-include.

* gnu/packages/textutils.scm (pandoc-include): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Wiktor Żelazny 2023-02-26 16:31:38 +01:00 committed by Ludovic Courtès
parent 2fd76ec1a3
commit 1cb9c2206c
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1565,3 +1565,31 @@ (define-public python-panflute
write. It is a pythonic alternative to John MacFarlane's pandocfilters, from
which it is heavily inspired.")
(license license:bsd-3)))
(define-public pandoc-include
(package
(name "pandoc-include")
(version "1.2.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "pandoc-include" version))
(sha256
(base32
"01nrbzs85mrd7jcflicsz0bmfnzi6wsy0ii262xl01zsabqd7n91"))))
(build-system python-build-system)
(propagated-inputs (list python-natsort python-panflute))
(home-page "https://github.com/DCsunset/pandoc-include")
(synopsis "Pandoc filter to allow file and header includes")
(description "@code{pandoc-include} extends Pandoc to support:
@enumerate
@item include as raw blocks
@item indent and dedent included contents
@item partial include
@item code include
@item Unix style pathname
@item recursive include
@item Yaml header merging
@item header include
@end enumerate")
(license license:expat)))