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:
Diffstat (limited to 'markup/org/convert.go')
-rw-r--r--markup/org/convert.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/markup/org/convert.go b/markup/org/convert.go
index 4d6e5e2fa..2b1fbb73c 100644
--- a/markup/org/convert.go
+++ b/markup/org/convert.go
@@ -17,6 +17,8 @@ package org
import (
"bytes"
+ "github.com/gohugoio/hugo/identity"
+
"github.com/gohugoio/hugo/markup/converter"
"github.com/niklasfasching/go-org/org"
"github.com/spf13/afero"
@@ -66,3 +68,7 @@ func (c *orgConverter) Convert(ctx converter.RenderContext) (converter.Result, e
}
return converter.Bytes([]byte(html)), nil
}
+
+func (c *orgConverter) Supports(feature identity.Identity) bool {
+ return false
+}