projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6125885
)
Fixed section labels causing panic on windows.
author
Noah Campbell
<noahcampbell@gmail.com>
Thu, 1 Aug 2013 20:27:07 +0000
(13:27 -0700)
committer
Noah Campbell
<noahcampbell@gmail.com>
Thu, 1 Aug 2013 20:27:56 +0000
(13:27 -0700)
The filename path was being split using a unix specific path seperator. This fix uses the os.PathSeperator to ensure proper evaluation regardless of platform.
hugolib/page.go
patch
|
blob
|
history
diff --git
a/hugolib/page.go
b/hugolib/page.go
index 7541257d05e7f1fa72b47fc3da7ab89b6ada308b..ff00493b212bd4afa8ecacc676649c46621c6b3a 100644
(file)
--- a/
hugolib/page.go
+++ b/
hugolib/page.go
@@
-91,7
+91,7
@@
func initializePage(filename string) (page Page) {
}
func (p *Page) setSection() {
- x := strings.Split(p.FileName,
"/"
)
+ x := strings.Split(p.FileName,
string(os.PathSeparator)
)
if section := x[len(x)-2]; section != "content" {
p.Section = section