From 6ec98088a765b29b84e14248715679b4618516ce Mon Sep 17 00:00:00 2001 From: Simon Kaegi Date: Mon, 23 Mar 2020 16:56:14 -0400 Subject: [PATCH] Update markup engine config Explicitly set the markup engine as blackfriday so the site renders with the current version of hugo. --- config.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config.toml b/config.toml index cd24d58..645c161 100644 --- a/config.toml +++ b/config.toml @@ -31,6 +31,9 @@ pygmentsStyle = "tango" [permalinks] blog = "/:section/:year/:month/:day/:slug/" +[markup] +defaultMarkdownHandler = "blackfriday" + ## Configuration for BlackFriday markdown parser: https://github.com/russross/blackfriday [blackfriday] plainIDAnchors = true -- GitLab