Low commit activity in last 3 years
No release in over a year
CommonMark generator for Jekyll
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 12.0
~> 3.0
>= 3.7, < 5.0

Runtime

 Project Readme

jekyll-commonmark

CommonMark Markdown converter for Jekyll

Gem Version Build Status Windows Build status

Jekyll Markdown converter that uses libcmark-gfm (via commonmarker). 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: ["FOOTNOTES"]
  extensions: ["strikethrough", "autolink", "table"]