summaryrefslogtreecommitdiffstats
path: root/transform
diff options
context:
space:
mode:
Diffstat (limited to 'transform')
-rw-r--r--transform/chain.go2
-rw-r--r--transform/chain_test.go2
-rw-r--r--transform/hugogeneratorinject.go2
3 files changed, 3 insertions, 3 deletions
diff --git a/transform/chain.go b/transform/chain.go
index 1e550d341..f9c99a04a 100644
--- a/transform/chain.go
+++ b/transform/chain.go
@@ -17,7 +17,7 @@ import (
"bytes"
"io"
- bp "github.com/spf13/hugo/bufferpool"
+ bp "github.com/gohugoio/hugo/bufferpool"
)
type trans func(rw contentTransformer)
diff --git a/transform/chain_test.go b/transform/chain_test.go
index 5200baa18..7b770ed67 100644
--- a/transform/chain_test.go
+++ b/transform/chain_test.go
@@ -19,7 +19,7 @@ import (
"strings"
"testing"
- "github.com/spf13/hugo/helpers"
+ "github.com/gohugoio/hugo/helpers"
"github.com/stretchr/testify/assert"
)
diff --git a/transform/hugogeneratorinject.go b/transform/hugogeneratorinject.go
index d80cdaf26..874053087 100644
--- a/transform/hugogeneratorinject.go
+++ b/transform/hugogeneratorinject.go
@@ -18,7 +18,7 @@ import (
"fmt"
"regexp"
- "github.com/spf13/hugo/helpers"
+ "github.com/gohugoio/hugo/helpers"
)
var metaTagsCheck = regexp.MustCompile(`(?i)<meta\s+name=['|"]?generator['|"]?`)