├── .gitignore ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── README.md ├── extract-config.toml ├── extract ├── doc.go ├── extractor.go └── extractor_test.go ├── goreleaser.yml ├── main.go ├── mapper ├── items.go ├── mapper.go └── types.go ├── read ├── config.go ├── contentful.go ├── filestore.go ├── getter.go ├── httpgetter.go ├── read.go └── store.go ├── translate ├── config.go ├── directory.go ├── filename.go ├── toml.go ├── translate.go ├── translate_test.go └── yaml.go └── write ├── filestore.go ├── store.go ├── write.go └── write_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | content 2 | dist 3 | vendor -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/README.md -------------------------------------------------------------------------------- /extract-config.toml: -------------------------------------------------------------------------------- 1 | encoding = "toml" 2 | -------------------------------------------------------------------------------- /extract/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/extract/doc.go -------------------------------------------------------------------------------- /extract/extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/extract/extractor.go -------------------------------------------------------------------------------- /extract/extractor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/extract/extractor_test.go -------------------------------------------------------------------------------- /goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/goreleaser.yml -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/main.go -------------------------------------------------------------------------------- /mapper/items.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/mapper/items.go -------------------------------------------------------------------------------- /mapper/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/mapper/mapper.go -------------------------------------------------------------------------------- /mapper/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/mapper/types.go -------------------------------------------------------------------------------- /read/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/read/config.go -------------------------------------------------------------------------------- /read/contentful.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/read/contentful.go -------------------------------------------------------------------------------- /read/filestore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/read/filestore.go -------------------------------------------------------------------------------- /read/getter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/read/getter.go -------------------------------------------------------------------------------- /read/httpgetter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/read/httpgetter.go -------------------------------------------------------------------------------- /read/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/read/read.go -------------------------------------------------------------------------------- /read/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/read/store.go -------------------------------------------------------------------------------- /translate/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/translate/config.go -------------------------------------------------------------------------------- /translate/directory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/translate/directory.go -------------------------------------------------------------------------------- /translate/filename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/translate/filename.go -------------------------------------------------------------------------------- /translate/toml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/translate/toml.go -------------------------------------------------------------------------------- /translate/translate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/translate/translate.go -------------------------------------------------------------------------------- /translate/translate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/translate/translate_test.go -------------------------------------------------------------------------------- /translate/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/translate/yaml.go -------------------------------------------------------------------------------- /write/filestore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/write/filestore.go -------------------------------------------------------------------------------- /write/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/write/store.go -------------------------------------------------------------------------------- /write/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/write/write.go -------------------------------------------------------------------------------- /write/write_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-hugo/contentful-export/HEAD/write/write_test.go --------------------------------------------------------------------------------