summaryrefslogtreecommitdiffstats
path: root/markup/rst/convert.go
diff options
context:
space:
mode:
Diffstat (limited to 'markup/rst/convert.go')
-rw-r--r--markup/rst/convert.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/markup/rst/convert.go b/markup/rst/convert.go
index 040b40d79..64cc8b511 100644
--- a/markup/rst/convert.go
+++ b/markup/rst/convert.go
@@ -19,6 +19,7 @@ import (
"os/exec"
"runtime"
+ "github.com/gohugoio/hugo/identity"
"github.com/gohugoio/hugo/markup/internal"
"github.com/gohugoio/hugo/markup/converter"
@@ -48,6 +49,10 @@ func (c *rstConverter) Convert(ctx converter.RenderContext) (converter.Result, e
return converter.Bytes(c.getRstContent(ctx.Src, c.ctx)), nil
}
+func (c *rstConverter) Supports(feature identity.Identity) bool {
+ return false
+}
+
// getRstContent calls the Python script rst2html as an external helper
// to convert reStructuredText content to HTML.
func (c *rstConverter) getRstContent(src []byte, ctx converter.DocumentContext) []byte {