diff options
author | Bjørn Erik Pedersen <[email protected]> | 2016-10-14 09:34:08 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2016-10-14 09:51:39 +0200 |
commit | 794589fbfdb41d380b47685775e7ca28009b420e (patch) | |
tree | 562de01bc0137e6a5f39e7caeda4a5d0c7058225 /commands/import_jekyll.go | |
parent | 8fa871a05f46295beef1f460bca28cb21ce42d2b (diff) | |
download | hugo-794589fbfdb41d380b47685775e7ca28009b420e.tar.gz hugo-794589fbfdb41d380b47685775e7ca28009b420e.zip |
Use example.org for replace-this-with-your-hugo-site.com
Fixes #2575
Diffstat (limited to 'commands/import_jekyll.go')
-rw-r--r-- | commands/import_jekyll.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/import_jekyll.go b/commands/import_jekyll.go index 7c595d8a1..ca65acb7c 100644 --- a/commands/import_jekyll.go +++ b/commands/import_jekyll.go @@ -221,7 +221,7 @@ func loadJekyllConfig(jekyllRoot string) map[string]interface{} { func createConfigFromJekyll(inpath string, kind string, jekyllConfig map[string]interface{}) (err error) { title := "My New Hugo Site" - baseurl := "http://replace-this-with-your-hugo-site.com/" + baseurl := "http://example.org/" for key, value := range jekyllConfig { lowerKey := strings.ToLower(key) |