The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

DESCRIPTION

This Pandoc filter executes other filters listed in document metadata field filters. Each filter must be an executable either in the current PATH or given by its absolute or relative name.

SYNOPSIS

  pandoc --filter pandoc-filters -o output.html < input.md

In input.md:

  ---
  filters:
    - filter1
    - ./filter2.pl
    - /path/filter3
  ...