jekyll-commonmark

CommonMark generator for Jekyll


Keywords
commonmark, gem, jekyll, jekyll-plugin, markdown-converter
License
MIT
Install
gem install jekyll-commonmark -v 1.3.1

Documentation

jekyll-commonmark

CommonMark Markdown converter for Jekyll

Gem Version Build Status Windows Build status Dependency Status

Jekyll Markdown converter that uses libcmark, the reference parser for CommonMark. As a result, it is faster than Kramdown.

GitHub Pages supports CommonMark through https://github.com/github/jekyll-commonmark-ghpages

Installation

Add the following to your Gemfile

group :jekyll_plugins do
  gem 'jekyll-commonmark'
end

and modify your _config.yml to use CommonMark as your Markdown converter

markdown: CommonMark

Configuration

To specify extensions and options for use in converting Markdown to HTML, supply options to the Markdown converter:

commonmark:
  options: ["SMART", "FOOTNOTES"]
  extensions: ["strikethrough", "autolink", "table"]