Bump all long-living deprecations to ERRORs

This commit is contained in:
Bjørn Erik Pedersen
2021-07-25 13:34:00 +02:00
parent a352d19d88
commit 91cbb96302
4 changed files with 19 additions and 19 deletions

View File

@@ -214,7 +214,7 @@ func (c *ContentSpec) ResolveMarkup(in string) string {
return "html"
default:
if in == "mmark" {
Deprecated("Markup type mmark", "See https://gohugo.io//content-management/formats/#list-of-content-formats", false)
Deprecated("Markup type mmark", "See https://gohugo.io//content-management/formats/#list-of-content-formats", true)
}
if conv := c.Converters.Get(in); conv != nil {
return conv.Name()