Skip to content

Instantly share code, notes, and snippets.

@sskylar
Created January 31, 2018 23:28
Show Gist options
  • Save sskylar/b9e08fa0765818ece2e136705e6d18f0 to your computer and use it in GitHub Desktop.
Save sskylar/b9e08fa0765818ece2e136705e6d18f0 to your computer and use it in GitHub Desktop.
Use Redcarpet instead of Kramdown (default) for Markdown processing in Jekyll
markdown: redcarpet # this might be set to "kramdown" currently
redcarpet:
extensions: # these are optional, see: https://github.com/vmg/redcarpet#and-its-like-really-simple-to-use
- autolink
- fenced_code_blocks
- lax_spacing
- strikethrough
- superscript
- tables
- footnotes
- highlight
source 'http://rubygems.org'
gem 'jekyll'
group :jekyll_plugins do
gem 'redcarpet'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment