From 0f864c60bd0449f43d23f89761bf87829d3fc701 Mon Sep 17 00:00:00 2001 From: Filipe Saraiva Date: Wed, 8 Mar 2017 01:08:18 -0300 Subject: [PATCH] Fix the deprecated pygments option to highlighter Since Jekyll 3.0 the pygments option was deprecated. Instead we must use highlighter option and put pygments value in order to continue to use pygments as syntax highlighting library [1]. [1] https://jekyllrb.com/docs/upgrading/2-to-3/#syntax-highlighter-changed --- _config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index 253ee77..2f6f4a6 100644 --- a/_config.yml +++ b/_config.yml @@ -9,7 +9,7 @@ redcarpet: extensions: [smart, tables] # colorize code snippets with the pygments module -pygments: true +highlighter: pygments # The path structure for blog posts. permalink: /blog/:year/:month/:day/:title.html