Run gofmt to get imports in line vs gohugoio/hugo
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 13 Jun 2017 17:07:35 +0000 (19:07 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 13 Jun 2017 17:12:10 +0000 (19:12 +0200)
52 files changed:
commands/convert.go
commands/gendoc.go
commands/gendocshelper.go
commands/genman.go
commands/hugo.go
commands/import_jekyll.go
commands/list.go
commands/new.go
commands/release.go
commands/server.go
commands/undraft.go
commands/version.go
create/content.go
create/content_test.go
helpers/content.go
helpers/content_renderer.go
helpers/emoji_test.go
helpers/general.go
helpers/language.go
helpers/path_test.go
hugofs/fs.go
hugolib/case_insensitive_test.go
hugolib/config.go
hugolib/disableKinds_test.go
hugolib/hugo_sites_build_test.go
hugolib/multilingual.go
hugolib/page.go
hugolib/page_test.go
hugolib/site.go
hugolib/site_output.go
hugolib/site_sections.go
hugolib/testhelpers_test.go
i18n/i18n.go
i18n/i18n_test.go
i18n/translationProvider.go
source/filesystem.go
tpl/collections/collections.go
tpl/collections/sort.go
tpl/data/cache.go
tpl/data/resources.go
tpl/data/resources_test.go
tpl/images/images.go
tpl/images/images_test.go
tpl/lang/lang.go
tpl/os/os.go
tpl/os/os_test.go
tpl/safe/safe.go
tpl/strings/strings.go
tpl/tplimpl/template.go
tpl/tplimpl/template_funcs_test.go
tpl/transform/transform.go
tpl/urls/urls.go

index e40f5fa405504eea8eed17c45d448e195fbd1188..298ff6019b3f448aa253ae3224a572b6ccfd9f95 100644 (file)
@@ -19,10 +19,10 @@ import (
        "path/filepath"
        "time"
 
-       "github.com/spf13/cast"
-       "github.com/spf13/cobra"
        "github.com/gohugoio/hugo/hugolib"
        "github.com/gohugoio/hugo/parser"
+       "github.com/spf13/cast"
+       "github.com/spf13/cobra"
 )
 
 var outputDir string
index 70e87dd6fb5d40284a362e76de7660709f85c7b8..c4840050b1e74e911b8e5528aa7775f47be7038d 100644 (file)
@@ -20,10 +20,10 @@ import (
        "strings"
        "time"
 
-       "github.com/spf13/cobra"
-       "github.com/spf13/cobra/doc"
        "github.com/gohugoio/hugo/helpers"
        "github.com/gohugoio/hugo/hugofs"
+       "github.com/spf13/cobra"
+       "github.com/spf13/cobra/doc"
        jww "github.com/spf13/jwalterweatherman"
 )
 
index 1d83232ecf860ff3c10f8de7ea683d11b507e465..ca781242ee7bec1d6a0e73765ef74869c674b7a3 100644 (file)
@@ -19,8 +19,8 @@ import (
        "os"
        "path/filepath"
 
-       "github.com/spf13/cobra"
        "github.com/gohugoio/hugo/docshelper"
+       "github.com/spf13/cobra"
 )
 
 type genDocsHelper struct {
index dd85a6e6a304e638327ffc8b36d0638d064a0edb..004e669e75bc184c6d58375790b220bbaf287fe9 100644 (file)
@@ -17,10 +17,10 @@ import (
        "fmt"
        "strings"
 
-       "github.com/spf13/cobra"
-       "github.com/spf13/cobra/doc"
        "github.com/gohugoio/hugo/helpers"
        "github.com/gohugoio/hugo/hugofs"
+       "github.com/spf13/cobra"
+       "github.com/spf13/cobra/doc"
        jww "github.com/spf13/jwalterweatherman"
 )
 
index 918e764748676dcb2f298cb509f3b74e5df91be5..b965ba16720b533c7046a8d16f76a25951761ea4 100644 (file)
@@ -38,15 +38,15 @@ import (
        "regexp"
 
        "github.com/fsnotify/fsnotify"
-       "github.com/spf13/afero"
-       "github.com/spf13/cobra"
-       "github.com/spf13/fsync"
        "github.com/gohugoio/hugo/deps"
        "github.com/gohugoio/hugo/helpers"
        "github.com/gohugoio/hugo/hugolib"
        "github.com/gohugoio/hugo/livereload"
        "github.com/gohugoio/hugo/utils"
        "github.com/gohugoio/hugo/watcher"
+       "github.com/spf13/afero"
+       "github.com/spf13/cobra"
+       "github.com/spf13/fsync"
        jww "github.com/spf13/jwalterweatherman"
        "github.com/spf13/nitro"
        "github.com/spf13/viper"
index 37f06bb2fc67522eea870af55dde170acc81c360..26a41c82a0e78aa4914330b205a126bfd72556e8 100644 (file)
@@ -25,13 +25,13 @@ import (
        "strings"
        "time"
 
-       "github.com/spf13/afero"
-       "github.com/spf13/cast"
-       "github.com/spf13/cobra"
        "github.com/gohugoio/hugo/helpers"
        "github.com/gohugoio/hugo/hugofs"
        "github.com/gohugoio/hugo/hugolib"
        "github.com/gohugoio/hugo/parser"
+       "github.com/spf13/afero"
+       "github.com/spf13/cast"
+       "github.com/spf13/cobra"
        jww "github.com/spf13/jwalterweatherman"
 )
 
index 4f3319c5787d5bd48ad9009aacbefee0df0650d3..b2a6b5395646240aa8e9c444d956b92ff0b658f7 100644 (file)
@@ -16,8 +16,8 @@ package commands
 import (
        "path/filepath"
 
-       "github.com/spf13/cobra"
        "github.com/gohugoio/hugo/hugolib"
+       "github.com/spf13/cobra"
        jww "github.com/spf13/jwalterweatherman"
 )
 
index 5b48abaf18469550d3c8242b47557bb77426c0f4..24f34b5493ff9c35d41e348ba5994b49a7c948e4 100644 (file)
@@ -22,13 +22,13 @@ import (
        "strings"
        "time"
 
-       "github.com/spf13/afero"
-       "github.com/spf13/cobra"
        "github.com/gohugoio/hugo/create"
        "github.com/gohugoio/hugo/helpers"
        "github.com/gohugoio/hugo/hugofs"
        "github.com/gohugoio/hugo/hugolib"
        "github.com/gohugoio/hugo/parser"
+       "github.com/spf13/afero"
+       "github.com/spf13/cobra"
        jww "github.com/spf13/jwalterweatherman"
        "github.com/spf13/viper"
 )
index c306b2c2b33ad7d29e1040672a15ce0647d390fc..c9275a0f0b183ba18e4039fa1db82a34001a697e 100644 (file)
@@ -16,8 +16,8 @@
 package commands
 
 import (
-       "github.com/spf13/cobra"
        "github.com/gohugoio/hugo/releaser"
+       "github.com/spf13/cobra"
 )
 
 func init() {
index 0c16b959faa118351ff5a8d1acda461e0a278c11..32a94f9c892a409eed92c19662018eab8d6b9b4e 100644 (file)
@@ -24,10 +24,10 @@ import (
        "strings"
        "time"
 
-       "github.com/spf13/afero"
-       "github.com/spf13/cobra"
        "github.com/gohugoio/hugo/config"
        "github.com/gohugoio/hugo/helpers"
+       "github.com/spf13/afero"
+       "github.com/spf13/cobra"
        jww "github.com/spf13/jwalterweatherman"
 )
 
index ae17ab34d103582b76d5dee8ec88a71016d90b68..2a3b853602568da03e4262f5d79585a6552dc3ef 100644 (file)
@@ -19,8 +19,8 @@ import (
        "os"
        "time"
 
-       "github.com/spf13/cobra"
        "github.com/gohugoio/hugo/parser"
+       "github.com/spf13/cobra"
 )
 
 var undraftCmd = &cobra.Command{
index a05967d218b8072eb407d520b308937182d5c124..5cd398b2b323bdddb322ca883f5bc9245914fc2a 100644 (file)
@@ -20,10 +20,10 @@ import (
        "strings"
        "time"
 
-       "github.com/kardianos/osext"
-       "github.com/spf13/cobra"
        "github.com/gohugoio/hugo/helpers"
        "github.com/gohugoio/hugo/hugolib"
+       "github.com/kardianos/osext"
+       "github.com/spf13/cobra"
        jww "github.com/spf13/jwalterweatherman"
 )
 
index 29c99d4712cd48310484dd9ae35feb908eabc35b..a622271760620d53f671321972bf581412cc8b28 100644 (file)
@@ -22,11 +22,11 @@ import (
        "strings"
        "time"
 
-       "github.com/spf13/afero"
-       "github.com/spf13/cast"
        "github.com/gohugoio/hugo/helpers"
        "github.com/gohugoio/hugo/hugolib"
        "github.com/gohugoio/hugo/parser"
+       "github.com/spf13/afero"
+       "github.com/spf13/cast"
        jww "github.com/spf13/jwalterweatherman"
 )
 
index 9728c1c9654632f5d737fd1bbb2d15f3c66380e2..8eaaf7bf51d12955a7d09daad8a349547c56faaa 100644 (file)
@@ -27,9 +27,9 @@ import (
 
        "github.com/gohugoio/hugo/hugofs"
 
-       "github.com/spf13/afero"
        "github.com/gohugoio/hugo/create"
        "github.com/gohugoio/hugo/helpers"
+       "github.com/spf13/afero"
        "github.com/spf13/viper"
        "github.com/stretchr/testify/require"
 )
index afd8c7c3797dec54fe9d7550f44f2d5c040d9f05..bb547de25f2d2068b9f6670408a19144fa7cbd49 100644 (file)
@@ -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"
index 49f11bc84308bdabf2786e0502eb3ca3d7aef595..f0d8cda12afd6a2ec42ed0e56708186d975bed52 100644 (file)
@@ -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"
 )
 
index 311ff644f3be43cf95991e528ad6ac8f21a59c36..f9189eb43cab3eeced3f2c5d9ae46679f97a99e5 100644 (file)
@@ -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) {
index d3dedc774787cb5090202a256e8593a9abc37bfd..7901be6545a81b53d12d8bb5d3979048e3d7a133 100644 (file)
@@ -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"
 )
index ba2eeb8f69df80d2914ff45c0f397c419623da56..67db59d250a152568cd44d21136ed4f88fd3cc4b 100644 (file)
@@ -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
index b2e5f65a31da519ebc7cb007fe7c9db137ac3916..5c0ae10ea11a3ae6a3fead8949d35c4167efcd7b 100644 (file)
@@ -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"
 )
 
index 92e89d4cc5d9f0304422f50ed67878bef6e6be5e..71c0dade0d7a95c84cacabf7c76248ac5dbda743 100644 (file)
@@ -15,8 +15,8 @@
 package hugofs
 
 import (
-       "github.com/spf13/afero"
        "github.com/gohugoio/hugo/config"
+       "github.com/spf13/afero"
 )
 
 // Os points to an Os Afero file system.
index d065a6923e105ddcf75c582531244f9fd74bad62..ca63196b3a2b684c81554fd1c25b2b760e3a8c1b 100644 (file)
@@ -19,9 +19,9 @@ import (
        "strings"
        "testing"
 
-       "github.com/spf13/afero"
        "github.com/gohugoio/hugo/deps"
        "github.com/gohugoio/hugo/hugofs"
+       "github.com/spf13/afero"
        "github.com/stretchr/testify/require"
 )
 
index 80b7bff394f9c62437b9ddace2dc78d73d9bbd48..62cdea95249790609f1d6db964ca2e796639190d 100644 (file)
@@ -16,8 +16,8 @@ package hugolib
 import (
        "fmt"
 
-       "github.com/spf13/afero"
        "github.com/gohugoio/hugo/helpers"
+       "github.com/spf13/afero"
        "github.com/spf13/viper"
 )
 
index 81f277c72d63ed804650a8d1b2340ae225bfa0b6..736d461db2905bf4fdde50994164f7cf0cfb3221 100644 (file)
@@ -18,8 +18,8 @@ import (
 
        "fmt"
 
-       "github.com/spf13/afero"
        "github.com/gohugoio/hugo/deps"
+       "github.com/spf13/afero"
 
        "github.com/gohugoio/hugo/helpers"
        "github.com/gohugoio/hugo/hugofs"
index 06867ab3d0a13a9e7ba2a41b83d741c56f517610..988a369162bf50d7e33e5d5e90e75f1101911a86 100644 (file)
@@ -13,11 +13,11 @@ import (
 
        "github.com/fortytw2/leaktest"
        "github.com/fsnotify/fsnotify"
-       "github.com/spf13/afero"
        "github.com/gohugoio/hugo/deps"
        "github.com/gohugoio/hugo/helpers"
        "github.com/gohugoio/hugo/hugofs"
        "github.com/gohugoio/hugo/source"
+       "github.com/spf13/afero"
        "github.com/spf13/viper"
        "github.com/stretchr/testify/require"
 )
index 04efe6386891f834462b1a9ac696b9cc9ffb2815..575be1396fd2b4f04a569912b58af11c9ad3b052 100644 (file)
@@ -21,9 +21,9 @@ import (
        "errors"
        "fmt"
 
-       "github.com/spf13/cast"
        "github.com/gohugoio/hugo/config"
        "github.com/gohugoio/hugo/helpers"
+       "github.com/spf13/cast"
 )
 
 type Multilingual struct {
index a0ea7183c6cc4ad02a7004ecfb918ee03ccb48a5..d4aca37a4c7c45f5e8b1ab51b84a5fb2ce6209bb 100644 (file)
@@ -21,10 +21,10 @@ import (
 
        "github.com/bep/gitmap"
 
-       "github.com/mitchellh/mapstructure"
        "github.com/gohugoio/hugo/helpers"
        "github.com/gohugoio/hugo/output"
        "github.com/gohugoio/hugo/parser"
+       "github.com/mitchellh/mapstructure"
 
        "html/template"
        "io"
@@ -36,9 +36,9 @@ import (
        "time"
        "unicode/utf8"
 
-       "github.com/spf13/cast"
        bp "github.com/gohugoio/hugo/bufferpool"
        "github.com/gohugoio/hugo/source"
+       "github.com/spf13/cast"
 )
 
 var (
index dbb7e38eeeb88dfd0da3a006f6265926bfc30b0d..352c7dd410b325ea225dbb9c9874d98a3d3c028b 100644 (file)
@@ -25,9 +25,9 @@ import (
        "testing"
        "time"
 
-       "github.com/spf13/cast"
        "github.com/gohugoio/hugo/deps"
        "github.com/gohugoio/hugo/helpers"
+       "github.com/spf13/cast"
        "github.com/stretchr/testify/assert"
        "github.com/stretchr/testify/require"
 )
index 78f02ff8075bceeee3716646f329c35a617f16e7..829023d1554aaff71fa32a99901ec7f246434383 100644 (file)
@@ -37,8 +37,6 @@ import (
        "sync/atomic"
 
        "github.com/fsnotify/fsnotify"
-       "github.com/spf13/afero"
-       "github.com/spf13/cast"
        bp "github.com/gohugoio/hugo/bufferpool"
        "github.com/gohugoio/hugo/deps"
        "github.com/gohugoio/hugo/helpers"
@@ -47,6 +45,8 @@ import (
        "github.com/gohugoio/hugo/source"
        "github.com/gohugoio/hugo/tpl"
        "github.com/gohugoio/hugo/transform"
+       "github.com/spf13/afero"
+       "github.com/spf13/cast"
        "github.com/spf13/nitro"
        "github.com/spf13/viper"
 )
index cbd85f35b996767e182b67cd0553aaccadcfe3ff..f5eb2ba57b7314739ff900c877213aae9bd14bb4 100644 (file)
@@ -18,10 +18,10 @@ import (
        "path"
        "strings"
 
-       "github.com/spf13/cast"
        "github.com/gohugoio/hugo/config"
        "github.com/gohugoio/hugo/helpers"
        "github.com/gohugoio/hugo/output"
+       "github.com/spf13/cast"
 )
 
 func createSiteOutputFormats(allFormats output.Formats, cfg config.Provider) (map[string]output.Formats, error) {
index 0e4370118b4785ec27234e6390469e5e170521ac..f8d9c9d1f30c9575fb90186e606c5f492a3538ca 100644 (file)
@@ -19,8 +19,8 @@ import (
        "strconv"
        "strings"
 
-       radix "github.com/hashicorp/go-immutable-radix"
        "github.com/gohugoio/hugo/helpers"
+       radix "github.com/hashicorp/go-immutable-radix"
 )
 
 // Deprecated: Use .Site.Home.Sections.
index 6439efb0989c612d6999213fc3c178a03e2629b9..c386e6203bb977c134a67fa04a707599314971d4 100644 (file)
@@ -9,9 +9,9 @@ import (
        "fmt"
        "strings"
 
-       "github.com/spf13/afero"
        "github.com/gohugoio/hugo/config"
        "github.com/gohugoio/hugo/deps"
+       "github.com/spf13/afero"
 
        "github.com/gohugoio/hugo/helpers"
        "github.com/gohugoio/hugo/source"
index c7f8b582796af1faf73a9fa4c8f16347db6fcb87..73417fb3240cdb32c9b7f12bea2c47e643be2d69 100644 (file)
@@ -14,9 +14,9 @@
 package i18n
 
 import (
-       "github.com/nicksnyder/go-i18n/i18n/bundle"
        "github.com/gohugoio/hugo/config"
        "github.com/gohugoio/hugo/helpers"
+       "github.com/nicksnyder/go-i18n/i18n/bundle"
        jww "github.com/spf13/jwalterweatherman"
 )
 
index 496d35ad34a0f1e3eca559cf3f7fa603dc990235..6a9d362b01fe1c7293de15cf157f8461a822fc86 100644 (file)
@@ -21,8 +21,8 @@ import (
 
        "log"
 
-       "github.com/nicksnyder/go-i18n/i18n/bundle"
        "github.com/gohugoio/hugo/config"
+       "github.com/nicksnyder/go-i18n/i18n/bundle"
        jww "github.com/spf13/jwalterweatherman"
        "github.com/spf13/viper"
        "github.com/stretchr/testify/require"
index c0d39c4a24465d1223c4c21b9c5f1e8e438c1a4a..9947d3ce52156969c5abde3cc1d07fcf587aae6d 100644 (file)
@@ -16,9 +16,9 @@ package i18n
 import (
        "fmt"
 
-       "github.com/nicksnyder/go-i18n/i18n/bundle"
        "github.com/gohugoio/hugo/deps"
        "github.com/gohugoio/hugo/source"
+       "github.com/nicksnyder/go-i18n/i18n/bundle"
 )
 
 // TranslationProvider provides translation handling, i.e. loading
index e36b021248accbec9bd95ec2bcdcc146cccdb658..446d8c06da43bf982757c7d62c3519dfa8d4e08e 100644 (file)
@@ -21,8 +21,8 @@ import (
        "runtime"
        "strings"
 
-       "github.com/spf13/cast"
        "github.com/gohugoio/hugo/helpers"
+       "github.com/spf13/cast"
        jww "github.com/spf13/jwalterweatherman"
        "golang.org/x/text/unicode/norm"
 )
index 2a29062d745fff53680b1254b4cf5f7ee1557ef8..ae2d73b46b4d343dab96c558be96395892d2a819 100644 (file)
@@ -23,9 +23,9 @@ import (
        "strings"
        "time"
 
-       "github.com/spf13/cast"
        "github.com/gohugoio/hugo/deps"
        "github.com/gohugoio/hugo/helpers"
+       "github.com/spf13/cast"
 )
 
 // New returns a new instance of the collections-namespaced template functions.
index 36faf207e6eafc31bdd860c0df808a0c38df148d..206a19cb5ea43e06407fe56ea09078d8142cd168 100644 (file)
@@ -19,8 +19,8 @@ import (
        "sort"
        "strings"
 
-       "github.com/spf13/cast"
        "github.com/gohugoio/hugo/tpl/compare"
+       "github.com/spf13/cast"
 )
 
 var comp = compare.New()
index a9b0f0138baca725b8e7652698dafcda87d0a407..b4f91c0f80076b89e8537d929579b8bf5966c29b 100644 (file)
@@ -18,9 +18,9 @@ import (
        "net/url"
        "sync"
 
-       "github.com/spf13/afero"
        "github.com/gohugoio/hugo/config"
        "github.com/gohugoio/hugo/helpers"
+       "github.com/spf13/afero"
 )
 
 var cacheMu sync.RWMutex
index bc9d4b7c4430fabe92b1a5d9d24efb44bc493700..11c35f9d9b67953a6f09524c893bfcb1e54831a6 100644 (file)
@@ -21,9 +21,9 @@ import (
        "sync"
        "time"
 
-       "github.com/spf13/afero"
        "github.com/gohugoio/hugo/config"
        "github.com/gohugoio/hugo/helpers"
+       "github.com/spf13/afero"
        jww "github.com/spf13/jwalterweatherman"
 )
 
index 31e782362a4a9b3acb47c4093579a569cab9b972..de83f771d00129db3674ba73d0143f5176de6d63 100644 (file)
@@ -23,11 +23,11 @@ import (
        "testing"
        "time"
 
-       "github.com/spf13/afero"
        "github.com/gohugoio/hugo/config"
        "github.com/gohugoio/hugo/deps"
        "github.com/gohugoio/hugo/helpers"
        "github.com/gohugoio/hugo/hugofs"
+       "github.com/spf13/afero"
        "github.com/spf13/viper"
        "github.com/stretchr/testify/assert"
        "github.com/stretchr/testify/require"
index 69bc77a34c5f047448850eb62179ec719a7bde10..f98c24286e27c7a9d9d6be16a3279883559f6435 100644 (file)
@@ -23,8 +23,8 @@ import (
        _ "image/jpeg"
        _ "image/png"
 
-       "github.com/spf13/cast"
        "github.com/gohugoio/hugo/deps"
+       "github.com/spf13/cast"
 )
 
 // New returns a new instance of the images-namespaced template functions.
index 6fa93b106f6403fa397e4d6231b48d1e16e0a427..c9b78ea9ac0b7f205a04769e2e4ad8472646f8a1 100644 (file)
@@ -22,10 +22,10 @@ import (
        "path/filepath"
        "testing"
 
-       "github.com/spf13/afero"
-       "github.com/spf13/cast"
        "github.com/gohugoio/hugo/deps"
        "github.com/gohugoio/hugo/hugofs"
+       "github.com/spf13/afero"
+       "github.com/spf13/cast"
        "github.com/spf13/viper"
        "github.com/stretchr/testify/assert"
        "github.com/stretchr/testify/require"
index 0442e4decbd20d842c4a467e25e7adc714ad0236..3a659b119067ef231bc0cf8172c4c2996d71e736 100644 (file)
@@ -19,8 +19,8 @@ import (
        "strconv"
        "strings"
 
-       "github.com/spf13/cast"
        "github.com/gohugoio/hugo/deps"
+       "github.com/spf13/cast"
 )
 
 // New returns a new instance of the lang-namespaced template functions.
index 4addae5a6598f6fd38f0f12af850687f352c0ba7..fb60f87dd49c1971211fdd9b5ed3a792c8fed896 100644 (file)
@@ -18,9 +18,9 @@ import (
        "fmt"
        _os "os"
 
+       "github.com/gohugoio/hugo/deps"
        "github.com/spf13/afero"
        "github.com/spf13/cast"
-       "github.com/gohugoio/hugo/deps"
 )
 
 // New returns a new instance of the os-namespaced template functions.
index 772fcb76af890ba05901bfc02885b44b02704ee1..383eb88c40a46f583d19a35b68316e3a179edacb 100644 (file)
@@ -18,9 +18,9 @@ import (
        "path/filepath"
        "testing"
 
-       "github.com/spf13/afero"
        "github.com/gohugoio/hugo/deps"
        "github.com/gohugoio/hugo/hugofs"
+       "github.com/spf13/afero"
        "github.com/spf13/viper"
        "github.com/stretchr/testify/assert"
        "github.com/stretchr/testify/require"
index 49db9dd82fb73efd15b4d3b6a7ec2de1959f9487..64c36cc4d92b53c91c43459afc309338aae222bf 100644 (file)
@@ -16,8 +16,8 @@ package safe
 import (
        "html/template"
 
-       "github.com/spf13/cast"
        "github.com/gohugoio/hugo/helpers"
+       "github.com/spf13/cast"
 )
 
 // New returns a new instance of the safe-namespaced template functions.
index 36af1a1c58c1555d787884b87e3f2b65e8172538..ec95be730e8eef9fba11c5e2affebfc6f5731f75 100644 (file)
@@ -20,9 +20,9 @@ import (
        _strings "strings"
        "unicode/utf8"
 
-       "github.com/spf13/cast"
        "github.com/gohugoio/hugo/deps"
        "github.com/gohugoio/hugo/helpers"
+       "github.com/spf13/cast"
 )
 
 // New returns a new instance of the strings-namespaced template functions.
index 13be7ee6d8244dd720ce3591d4638d371ebda604..06ab775c3c5c6f7decb8f9163033b4738e822eef 100644 (file)
@@ -29,10 +29,10 @@ import (
        "path/filepath"
        "sync"
 
-       "github.com/spf13/afero"
        "github.com/gohugoio/hugo/deps"
        "github.com/gohugoio/hugo/helpers"
        "github.com/gohugoio/hugo/tpl"
+       "github.com/spf13/afero"
 )
 
 const (
index 038a204e3d2c44a2a63b9db2deb9fca3ac69f667..04f4464ec63ebdeb110d69df22638d93e675ac58 100644 (file)
@@ -24,7 +24,6 @@ import (
        "log"
        "os"
 
-       "github.com/spf13/afero"
        "github.com/gohugoio/hugo/config"
        "github.com/gohugoio/hugo/deps"
        "github.com/gohugoio/hugo/helpers"
@@ -32,6 +31,7 @@ import (
        "github.com/gohugoio/hugo/i18n"
        "github.com/gohugoio/hugo/tpl"
        "github.com/gohugoio/hugo/tpl/internal"
+       "github.com/spf13/afero"
        jww "github.com/spf13/jwalterweatherman"
        "github.com/spf13/viper"
        "github.com/stretchr/testify/require"
index 2cc4295b255107aca31270e118c5a62ddda07299..b41b41b9cd5475d112dad96316b32626e1b2a4c0 100644 (file)
@@ -18,9 +18,9 @@ import (
        "html"
        "html/template"
 
-       "github.com/spf13/cast"
        "github.com/gohugoio/hugo/deps"
        "github.com/gohugoio/hugo/helpers"
+       "github.com/spf13/cast"
 )
 
 // New returns a new instance of the transform-namespaced template functions.
index 60078695f168f7b6a70980aec794d5d762fcd7dd..e29cabe894faed6646c1d026af6048f146b1b0e7 100644 (file)
@@ -17,8 +17,8 @@ import (
        "errors"
        "html/template"
 
-       "github.com/spf13/cast"
        "github.com/gohugoio/hugo/deps"
+       "github.com/spf13/cast"
 )
 
 // New returns a new instance of the urls-namespaced template functions.