summaryrefslogtreecommitdiffstats
path: root/markup/mmark/convert.go
diff options
context:
space:
mode:
Diffstat (limited to 'markup/mmark/convert.go')
-rw-r--r--markup/mmark/convert.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/markup/mmark/convert.go b/markup/mmark/convert.go
index 07b2a6f81..0682ad276 100644
--- a/markup/mmark/convert.go
+++ b/markup/mmark/convert.go
@@ -15,6 +15,7 @@
package mmark
import (
+ "github.com/gohugoio/hugo/identity"
"github.com/gohugoio/hugo/markup/blackfriday/blackfriday_config"
"github.com/gohugoio/hugo/markup/converter"
"github.com/miekg/mmark"
@@ -65,6 +66,10 @@ func (c *mmarkConverter) Convert(ctx converter.RenderContext) (converter.Result,
return mmark.Parse(ctx.Src, r, c.extensions), nil
}
+func (c *mmarkConverter) Supports(feature identity.Identity) bool {
+ return false
+}
+
func getHTMLRenderer(
ctx converter.DocumentContext,
cfg blackfriday_config.Config,