Currently when requesting an empty filter this results in mermaid-filter
(the default).
An empty string may not be the best marker to take default values ...
A workaround is to eg. having python available and
pip install pandocfilters
and then use a "no op" filter like:#!/usr/bin/env python """Pandoc no operation filter.""" from pandocfilters import toJSONFilter def noop(key, value, format, meta): pass if __name__ == "__main__": toJSONFilter(noop)
Fixed in 0e0567d7