From 9a2576675f9f093e1a48cc0beda2533f494b0e08 Mon Sep 17 00:00:00 2001 From: Filipe Saraiva Date: Wed, 8 Mar 2017 01:01:41 -0300 Subject: [PATCH] Use kramdown instead redcarpet as markdown parser Since Jekyll 3.0 kramdown is the default library to parser markdown files [1]. Kramdown in fact is the default option, so there is no need to specify this library in _config.yml file [2]. [1] https://help.github.com/articles/updating-your-markdown-processor-to-kramdown/ [2] https://jekyllrb.com/docs/configuration/#default-configuration --- _config.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/_config.yml b/_config.yml index 253ee77..094e0a3 100644 --- a/_config.yml +++ b/_config.yml @@ -3,11 +3,6 @@ url: http://awesome.example.edu exclude: [bibble, README.md, Makefile, screenshot.png] -# use this library to parse Markdown -markdown: redcarpet -redcarpet: - extensions: [smart, tables] - # colorize code snippets with the pygments module pygments: true