summaryrefslogtreecommitdiffstats
path: root/helpers
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-13 19:07:35 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-13 19:12:10 +0200
commit873a6f18851bcda79d562ff6c02e1109e8e31a88 (patch)
treedd6bc11de530ad9fc05be0ff1d0b3c84afb67b5e /helpers
parentf503d76a3b2719bbb65ab9df5595d0dbc871fae9 (diff)
Run gofmt to get imports in line vs gohugoio/hugo
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
6 files changed, 7 insertions, 7 deletions
diff --git a/helpers/content.go b/helpers/content.go
index afd8c7c37..bb547de25 100644
--- a/helpers/content.go
+++ b/helpers/content.go
@@ -26,11 +26,11 @@ import (
"unicode/utf8"
"github.com/chaseadamsio/goorgeous"
+ bp "github.com/gohugoio/hugo/bufferpool"
+ "github.com/gohugoio/hugo/config"
"github.com/miekg/mmark"
"github.com/mitchellh/mapstructure"
"github.com/russross/blackfriday"
- 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 49f11bc84..f0d8cda12 100644
--- a/helpers/content_renderer.go
+++ b/helpers/content_renderer.go
@@ -17,9 +17,9 @@ import (
"bytes"
"html"
+ "github.com/gohugoio/hugo/config"
"github.com/miekg/mmark"
"github.com/russross/blackfriday"
- "github.com/gohugoio/hugo/config"
jww "github.com/spf13/jwalterweatherman"
)
diff --git a/helpers/emoji_test.go b/helpers/emoji_test.go
index 311ff644f..f9189eb43 100644
--- a/helpers/emoji_test.go
+++ b/helpers/emoji_test.go
@@ -18,8 +18,8 @@ import (
"strings"
"testing"
- "github.com/kyokomi/emoji"
"github.com/gohugoio/hugo/bufferpool"
+ "github.com/kyokomi/emoji"
)
func TestEmojiCustom(t *testing.T) {
diff --git a/helpers/general.go b/helpers/general.go
index d3dedc774..7901be654 100644
--- a/helpers/general.go
+++ b/helpers/general.go
@@ -26,8 +26,8 @@ import (
"unicode"
"unicode/utf8"
- "github.com/spf13/cast"
bp "github.com/gohugoio/hugo/bufferpool"
+ "github.com/spf13/cast"
jww "github.com/spf13/jwalterweatherman"
"github.com/spf13/pflag"
)
diff --git a/helpers/language.go b/helpers/language.go
index ba2eeb8f6..67db59d25 100644
--- a/helpers/language.go
+++ b/helpers/language.go
@@ -18,8 +18,8 @@ import (
"strings"
"sync"
- "github.com/spf13/cast"
"github.com/gohugoio/hugo/config"
+ "github.com/spf13/cast"
)
// 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 b2e5f65a3..5c0ae10ea 100644
--- a/helpers/path_test.go
+++ b/helpers/path_test.go
@@ -29,8 +29,8 @@ import (
"github.com/stretchr/testify/assert"
- "github.com/spf13/afero"
"github.com/gohugoio/hugo/hugofs"
+ "github.com/spf13/afero"
"github.com/spf13/viper"
)