summaryrefslogtreecommitdiffstats
path: root/helpers/content.go
diff options
context:
space:
mode:
Diffstat (limited to 'helpers/content.go')
-rw-r--r--helpers/content.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/helpers/content.go b/helpers/content.go
index 941475461..4dc4cd413 100644
--- a/helpers/content.go
+++ b/helpers/content.go
@@ -198,6 +198,9 @@ func (c *ContentSpec) ResolveMarkup(in string) string {
case "html", "htm":
return "html"
default:
+ if in == "mmark" {
+ Deprecated("Markup type mmark", "See https://gohugo.io//content-management/formats/#list-of-content-formats", false)
+ }
if conv := c.Converters.Get(in); conv != nil {
return conv.Name()
}