Created
January 31, 2018 23:28
-
-
Save sskylar/b9e08fa0765818ece2e136705e6d18f0 to your computer and use it in GitHub Desktop.
Use Redcarpet instead of Kramdown (default) for Markdown processing in Jekyll
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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