diff options
author | Bjørn Erik Pedersen <[email protected]> | 2017-06-13 18:42:45 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2017-06-13 18:42:45 +0200 |
commit | d8717cd4c74e80ea8e20adead9321412a2d76022 (patch) | |
tree | 50b934ea1c1b67ac0911785c273027eca3e4894c /transform | |
parent | 2d08a296a2de3b3db209a0f44249b7b24733098e (diff) | |
download | hugo-d8717cd4c74e80ea8e20adead9321412a2d76022.tar.gz hugo-d8717cd4c74e80ea8e20adead9321412a2d76022.zip |
all: Update import paths to gohugoio/hugo
Diffstat (limited to 'transform')
-rw-r--r-- | transform/chain.go | 2 | ||||
-rw-r--r-- | transform/chain_test.go | 2 | ||||
-rw-r--r-- | transform/hugogeneratorinject.go | 2 |
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['|"]?`) |