No description
  • Ruby 97.7%
  • Shell 2.3%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-07-06 12:01:09 -05:00
.github Bump ruby/setup-ruby from 1.314.0 to 1.316.0 2026-07-06 13:42:35 +00:00
lib Remove garbage on unknown lang 2020-09-30 21:07:26 +09:00
script Drop 2.5 and update rubygems 2022-03-03 14:59:26 -08:00
spec Bump commonmarker to the latest 2022-03-03 14:38:47 -08:00
.gitignore Bump commonmarker to the latest 2022-03-03 14:38:47 -08:00
Gemfile Initial commit 2017-06-28 15:40:33 +10:00
jekyll-commonmark-ghpages.gemspec Update rouge requirement from >= 2.0, < 5.0 to >= 2.0, < 6.0 2026-06-02 16:55:25 +00:00
LICENSE Initial commit 2017-06-28 15:40:33 +10:00
Rakefile Initial commit 2017-06-28 15:40:33 +10:00
README.md Remove old CI 2022-03-03 15:03:01 -08:00

jekyll-commonmark-ghpages

GitHub Flavored Markdown converter for Jekyll, based on jekyll-commonmark

Gem Version Build Status

Jekyll Markdown converter that uses libcmark-gfm, GitHub's fork of cmark, the reference parser for CommonMark, with some additions to ensure compatibility with existing Kramdown-based sites.

Installation

Add the following to your Gemfile:

group :jekyll_plugins do
  gem 'jekyll-commonmark-ghpages'
end

and modify your _config.yml to use CommonMarkGhPages as your Markdown converter:

markdown: CommonMarkGhPages

This processor is currently in testing for use in GitHub Pages.

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

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

⚠ The UNSAFE option is required for HTML rendering.