Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-07-25 14:34:00 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-07-25 18:17:21 +0300
commit91cbb963020ac2aead68ff2bbd7e9077d5558abd (patch)
tree6b27cf89aa9a8b28584ff94bc5d0411db76bb408 /helpers
parenta352d19d881474f53d01791be4febd305453a9d6 (diff)
Bump all long-living deprecations to ERRORs
Diffstat (limited to 'helpers')
-rw-r--r--helpers/content.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/content.go b/helpers/content.go
index 5e56ad6bf..161b14e76 100644
--- a/helpers/content.go
+++ b/helpers/content.go
@@ -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()