summaryrefslogtreecommitdiffstats
path: root/helpers
diff options
context:
space:
mode:
Diffstat (limited to 'helpers')
-rw-r--r--helpers/content.go4
-rw-r--r--helpers/content_renderer.go2
-rw-r--r--helpers/emoji_test.go2
-rw-r--r--helpers/general.go2
-rw-r--r--helpers/language.go2
-rw-r--r--helpers/path_test.go2
-rw-r--r--helpers/pathspec.go4
-rw-r--r--helpers/pathspec_test.go2
-rw-r--r--helpers/pygments.go4
-rw-r--r--helpers/testhelpers_test.go2
-rw-r--r--helpers/url_test.go2
11 files changed, 14 insertions, 14 deletions
diff --git a/helpers/content.go b/helpers/content.go
index 167e8de74..afd8c7c37 100644
--- a/helpers/content.go
+++ b/helpers/content.go
@@ -29,8 +29,8 @@ import (
"github.com/miekg/mmark"
"github.com/mitchellh/mapstructure"
"github.com/russross/blackfriday"
- bp "github.com/spf13/hugo/bufferpool"
- "github.com/spf13/hugo/config"
+ bp "github.com/gohugoio/hugo/bufferpool"
+ "github.com/gohugoio/hugo/config"
jww "github.com/spf13/jwalterweatherman"
"strings"
diff --git a/helpers/content_renderer.go b/helpers/content_renderer.go
index 6082ae945..49f11bc84 100644
--- a/helpers/content_renderer.go
+++ b/helpers/content_renderer.go
@@ -19,7 +19,7 @@ import (
"github.com/miekg/mmark"
"github.com/russross/blackfriday"
- "github.com/spf13/hugo/config"
+ "github.com/gohugoio/hugo/config"
jww "github.com/spf13/jwalterweatherman"
)
diff --git a/helpers/emoji_test.go b/helpers/emoji_test.go
index ede601b7a..311ff644f 100644
--- a/helpers/emoji_test.go
+++ b/helpers/emoji_test.go
@@ -19,7 +19,7 @@ import (
"testing"
"github.com/kyokomi/emoji"
- "github.com/spf13/hugo/bufferpool"
+ "github.com/gohugoio/hugo/bufferpool"
)
func TestEmojiCustom(t *testing.T) {
diff --git a/helpers/general.go b/helpers/general.go
index 4fd91133b..d3dedc774 100644
--- a/helpers/general.go
+++ b/helpers/general.go
@@ -27,7 +27,7 @@ import (
"unicode/utf8"
"github.com/spf13/cast"
- bp "github.com/spf13/hugo/bufferpool"
+ bp "github.com/gohugoio/hugo/bufferpool"
jww "github.com/spf13/jwalterweatherman"
"github.com/spf13/pflag"
)
diff --git a/helpers/language.go b/helpers/language.go
index 9b7136854..ba2eeb8f6 100644
--- a/helpers/language.go
+++ b/helpers/language.go
@@ -19,7 +19,7 @@ import (
"sync"
"github.com/spf13/cast"
- "github.com/spf13/hugo/config"
+ "github.com/gohugoio/hugo/config"
)
// These are the settings that should only be looked up in the global Viper
diff --git a/helpers/path_test.go b/helpers/path_test.go
index 25dbdc543..b2e5f65a3 100644
--- a/helpers/path_test.go
+++ b/helpers/path_test.go
@@ -30,7 +30,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/spf13/afero"
- "github.com/spf13/hugo/hugofs"
+ "github.com/gohugoio/hugo/hugofs"
"github.com/spf13/viper"
)
diff --git a/helpers/pathspec.go b/helpers/pathspec.go
index ff4488020..bd55d8965 100644
--- a/helpers/pathspec.go
+++ b/helpers/pathspec.go
@@ -16,8 +16,8 @@ package helpers
import (
"fmt"
- "github.com/spf13/hugo/config"
- "github.com/spf13/hugo/hugofs"
+ "github.com/gohugoio/hugo/config"
+ "github.com/gohugoio/hugo/hugofs"
)
// PathSpec holds methods that decides how paths in URLs and files in Hugo should look like.
diff --git a/helpers/pathspec_test.go b/helpers/pathspec_test.go
index 2536b8f24..04ec7cac7 100644
--- a/helpers/pathspec_test.go
+++ b/helpers/pathspec_test.go
@@ -16,7 +16,7 @@ package helpers
import (
"testing"
- "github.com/spf13/hugo/hugofs"
+ "github.com/gohugoio/hugo/hugofs"
"github.com/spf13/viper"
"github.com/stretchr/testify/require"
diff --git a/helpers/pygments.go b/helpers/pygments.go
index 051612608..60f62a88f 100644
--- a/helpers/pygments.go
+++ b/helpers/pygments.go
@@ -24,8 +24,8 @@ import (
"sort"
"strings"
- "github.com/spf13/hugo/config"
- "github.com/spf13/hugo/hugofs"
+ "github.com/gohugoio/hugo/config"
+ "github.com/gohugoio/hugo/hugofs"
jww "github.com/spf13/jwalterweatherman"
)
diff --git a/helpers/testhelpers_test.go b/helpers/testhelpers_test.go
index d5a1b60ed..86f141146 100644
--- a/helpers/testhelpers_test.go
+++ b/helpers/testhelpers_test.go
@@ -3,7 +3,7 @@ package helpers
import (
"github.com/spf13/viper"
- "github.com/spf13/hugo/hugofs"
+ "github.com/gohugoio/hugo/hugofs"
)
func newTestPathSpec(fs *hugofs.Fs, v *viper.Viper) *PathSpec {
diff --git a/helpers/url_test.go b/helpers/url_test.go
index 499388259..9572547c7 100644
--- a/helpers/url_test.go
+++ b/helpers/url_test.go
@@ -18,7 +18,7 @@ import (
"strings"
"testing"
- "github.com/spf13/hugo/hugofs"
+ "github.com/gohugoio/hugo/hugofs"
"github.com/spf13/viper"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"