mfenner / jekyll-pandoc

Jekyll Pandoc markdown converter as Ruby gem
MIT License
82 stars 10 forks source link

How to add filters to the pandoc property on _config.yml #16

Closed serranomorante closed 1 year ago

serranomorante commented 1 year ago

Hi! Is possible to add filters like this?

pandoc:
    extensions:
        ...
    filters:
        - ...
serranomorante commented 1 year ago

This worked!

pandoc:
  extensions:
    - mathjax
    - filter: mermaid-filter
    ...