diff options
author | Bjørn Erik Pedersen <[email protected]> | 2022-05-28 11:01:47 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2022-05-29 11:50:58 +0200 |
commit | 0f8dc47037f59156c04540d97ed1b588e6bc1164 (patch) | |
tree | 78d76bb4d52b2f35b609013fde6ec4f5e19730c8 /markup/markup_test.go | |
parent | 3b478f50b7408ad78d085fa6dbc3c7a683c9d943 (diff) | |
download | hugo-0f8dc47037f59156c04540d97ed1b588e6bc1164.tar.gz hugo-0f8dc47037f59156c04540d97ed1b588e6bc1164.zip |
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
Diffstat (limited to 'markup/markup_test.go')
-rw-r--r-- | markup/markup_test.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/markup/markup_test.go b/markup/markup_test.go index c0cc5ba8b..5ec27c45c 100644 --- a/markup/markup_test.go +++ b/markup/markup_test.go @@ -43,5 +43,4 @@ func TestConverterRegistry(t *testing.T) { checkName("rst") checkName("pandoc") checkName("org") - checkName("blackfriday") } |