# jekyll-commonmark-ghpages **Repository Path**: mirrors_github/jekyll-commonmark-ghpages ## Basic Information - **Project Name**: jekyll-commonmark-ghpages - **Description**: CommonMark generator for Jekyll used by GitHub Pages - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-02-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # jekyll-commonmark-ghpages *GitHub Flavored Markdown converter for Jekyll, based on [`jekyll-commonmark`](https://github.com/jekyll/jekyll-commonmark)* [![Gem Version](https://img.shields.io/gem/v/jekyll-commonmark-ghpages.svg)](https://rubygems.org/gems/jekyll-commonmark-ghpages) [![Build Status](https://github.com/github/jekyll-commonmark-ghpages/actions/workflows/cibuild.yaml/badge.svg)](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.