From e148ce1e5eef52ea54e15b48cae5c12f75a873bb Mon Sep 17 00:00:00 2001
From: John Thiltges <jthiltges2@unl.edu>
Date: Tue, 14 Apr 2020 17:53:17 -0500
Subject: [PATCH] Hugo: Use blackfriday renderer until we update the content to
 render with goldmark

---
 config.toml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/config.toml b/config.toml
index 7b0ac0c1..1d896582 100644
--- a/config.toml
+++ b/config.toml
@@ -39,3 +39,12 @@ name = "hcc.unl.edu"
 identifier = "ds"
 url = "https://hcc.unl.edu"
 weight = 10
+
+# Hugo v0.60+ switched renderer from blackfriday to goldmark
+# - Allow unsafe for docdock template rendering
+#[markup.goldmark.renderer]
+#unsafe = true
+
+# FIXME: Use blackfriday renderer until we update the content to render with goldmark
+[markup]
+defaultMarkdownHandler = "blackfriday"
-- 
GitLab