Sha256: 44ed07b1b0c055f245ec8bc3475bdd7c4c18c3c3791e833f50a688e511bbd1dd
Contents?: true
Size: 1.35 KB
Versions: 5
Compression:
Stored size: 1.35 KB
Contents
# jekyll-commonmark-ghpages *GitHub Flavored Markdown converter for Jekyll, based on [`jekyll-commonmark`](https://github.com/jekyll/jekyll-commonmark)* [](https://rubygems.org/gems/jekyll-commonmark-ghpages) [](https://github.com/github/jekyll-commonmark-ghpages/actions/workflows/cibuild.yaml) Jekyll Markdown converter that uses [libcmark-gfm](https://github.com/github/cmark), GitHub's fork of [cmark](https://github.com/commonmark/cmark), the reference parser for CommonMark, with some additions to ensure compatibility with existing Kramdown-based sites. ## Installation Add the following to your `Gemfile`: ```ruby group :jekyll_plugins do gem 'jekyll-commonmark-ghpages' end ``` and modify your `_config.yml` to use **CommonMarkGhPages** as your Markdown converter: ```yaml 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: ```yaml commonmark: options: ["UNSAFE", "SMART", "FOOTNOTES"] extensions: ["strikethrough", "autolink", "table", "tagfilter"] ``` ⚠ The `UNSAFE` option is required for HTML rendering.
Version data entries
5 entries across 5 versions & 1 rubygems