Pandoc markdown converter for the Jekyll static site generator. Originally based on jekyll-pandoc-plugin by David Sanson.
Jekyll-pandoc uses the pandoc-ruby gem as a Ruby wrapper for Pandoc.
- Jekyll, version 
3.0or higher - Pandoc, version 
1.15or higher 
Install version 1.0.2 for older jekyll versions
Run bundle install after adding the gem to your Jekyll Gemfile:
gem "jekyll-pandoc"
If you are not using Bundler, install as gem:
[sudo] gem install jekyll-pandoc
Add the gem to the Jekyll _config.yml:
gems:
  - jekyll-pandoc
Change the markdown processor in the Jekyll _config.yml:
markdown: Pandoc
Additional pandoc options can be provided in the Jekyll _config.yml:
pandoc:
  extensions:
    - normalize
    - smart
    - mathjax
    - csl: _styles/apa.csl
    - bibliography: bibliography/references.bib
- Fork it
 - Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request
 
