pandoc-include: Include other Markdown files

[ library, mit, program, text ] [ Propose Tags ]

A Pandoc filter that replaces include labeled Code Blocks with the contents of the referenced Markdown files. Even nested, recursive includes.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.0.1
Change log CHANGELOG.md
Dependencies base (>=4.6 && <5), directory, pandoc (>=1.13.0.0), pandoc-types (>=1.12.0.0), text (>=0.11) [details]
License MIT
Copyright (c) 2015 Dániel Stein
Author Dániel Stein <daniel@stein.hu>
Maintainer Dániel Stein <daniel@stein.hu>
Category Text
Home page https://github.com/steindani/pandoc-include
Bug tracker https://github.com/steindani/pandoc-include/issues
Source repo head: git clone git://github.com/steindani/pandoc-include.git
Uploaded by steindani at 2015-12-08T13:55:44Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables pandoc-include
Downloads 1800 total (7 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
Last success reported on 2016-11-29 [all 3 reports]

Readme for pandoc-include-0.0.1

[back to package description]

pandoc-include

A Pandoc filter that replaces include labeled Code Blocks with the contents of the referenced files. Even nested, recursive includes.

Based on the scripting tutorial for Pandoc: http://pandoc.org/scripting.html#include-files

Format

The Code Blocks like the following will include every file in a new line. The reference paths should be either absolute or relative to the folder where the pandoc command will be executed.

```include
/absolute/file/path.md
relative/to/the/command/root.md
#do/not/include/this.md
```

If the file does not exist, it will be skipped completely. No warnings, no residue, nothing. Putting an # as the first character in the line will make the filter skip that file.

For now the nested includes only work for two levels, after that the source will be inserted and not parsed.

Note: the metadata from the included source files are discarded.

Installation

One could either install it using the Cabal packaging system by running:

cabal update
cabal install pandoc-include

Or it is also possible to use the pipe method using the source code described in the Usage section.

Usage

In order to use this Pandoc filter, one has to include it into the Pandoc transformation workflow. This can be done by using the --filter parameter, like so:

pandoc --from markdown --to latex --filter pandoc-include input.md

All this does in the background is pipelining the output of Pandoc and the last filter into the standard input of the include filter and using its output as the next filter's input:

pandoc --from markdown --to json input.md | runhaskell IncludeFilter.hs | pandoc --from json --to latex

License

Copyright ©2015 Dániel Stein

Source code is released under the Terms and Conditions of MIT License.