mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
Formatting cleanup
This commit is contained in:
parent
ec821739bc
commit
c713beba4d
2 changed files with 4 additions and 6 deletions
|
@ -1,8 +1,8 @@
|
|||
package hugolib
|
||||
|
||||
import (
|
||||
"testing"
|
||||
"strings"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestSitePossibleIndexes(t *testing.T) {
|
||||
|
@ -14,5 +14,3 @@ func TestSitePossibleIndexes(t *testing.T) {
|
|||
t.Fatalf("possible indexes do not match [tags categories]. Got: %s", indexes)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -326,9 +326,9 @@ func (s *Site) setOutFile(p *Page) {
|
|||
if len(strings.TrimSpace(p.Slug)) > 0 {
|
||||
// Use Slug if provided
|
||||
if s.Config.UglyUrls {
|
||||
outfile = p.Slug + "." + p.Extension
|
||||
outfile = strings.TrimSpace(p.Slug) + "." + p.Extension
|
||||
} else {
|
||||
outfile = p.Slug + slash + "index." + p.Extension
|
||||
outfile = filepath.Join(strings.TrimSpace(p.Slug), "index."+p.Extension)
|
||||
}
|
||||
} else {
|
||||
// Fall back to filename
|
||||
|
@ -337,7 +337,7 @@ func (s *Site) setOutFile(p *Page) {
|
|||
outfile = replaceExtension(strings.TrimSpace(t), p.Extension)
|
||||
} else {
|
||||
file, _ := fileExt(strings.TrimSpace(t))
|
||||
outfile = file + slash + "index." + p.Extension
|
||||
outfile = filepath.Join(file, "index."+p.Extension)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue