From 0f8dc47037f59156c04540d97ed1b588e6bc1164 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Sat, 28 May 2022 11:01:47 +0200 Subject: Remove Blackfriday markdown engine It has been deprecated for a long time, its v1 version is not maintained anymore, and there are many known issues. Goldmark should be a mature replacement by now. Closes #9934 --- hugolib/page__content.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hugolib/page__content.go') diff --git a/hugolib/page__content.go b/hugolib/page__content.go index 52389c472..f6f4564eb 100644 --- a/hugolib/page__content.go +++ b/hugolib/page__content.go @@ -38,7 +38,7 @@ type pageContent struct { source rawPageContent } -// returns the content to be processed by Blackfriday or similar. +// returns the content to be processed by Goldmark or similar. func (p pageContent) contentToRender(renderedShortcodes map[string]string) []byte { source := p.source.parsed.Input() -- cgit v1.2.3