metalsmith-pandoc

Pandoc plugin for metalsmith

Usage no npm install needed!

<script type="module">
  import metalsmithPandoc from 'https://cdn.skypack.dev/metalsmith-pandoc';
</script>

README

npm version Build Status

metalsmith-pandoc

Wrap around pdc, which lets you transform files with pandoc. For example from markdown to Word (docx). Pandoc needs to be system installed.

Install

npm install metalsmith-pandoc

Usage

pandoc = require('metalsmith-pandoc');

Metalsmith(__dirname)
.use(pandoc())
...

As default, plugin will use these settings:

options = {
  from: 'markdown',
  to:   'html5',
  args: [],
  opts: {},
  pattern: '**/*.md', // multimatch
  ext: '.html' // extension for output file
};

To override the defaults, pass an object to the plugin:

.use(pandoc({
  pattern: ['rsts/*.md', 'docs/**/*.md'],
  args: ['--columns=80'],
  from: 'markdown',
  to: 'rst',
  ext: '.rst'
}))

See pdc and pandoc for more detailed description of options.

Release

npm version major|minor|patch
npm publish

Credit

Stole code from metalsmith-markdown.