gofmt all go code

This commit is contained in:
Tibor Vass
2014-01-29 14:50:31 -08:00
committed by spf13
parent ff9f6e1b2a
commit 6dd2e9a49a
14 changed files with 2013 additions and 2013 deletions

View File

@@ -14,29 +14,29 @@
package hugolib
import (
"html/template"
"time"
"html/template"
"time"
)
type Node struct {
RSSLink template.HTML
Site SiteInfo
// layout string
Data map[string]interface{}
Title string
Description string
Keywords []string
Date time.Time
UrlPath
RSSLink template.HTML
Site SiteInfo
// layout string
Data map[string]interface{}
Title string
Description string
Keywords []string
Date time.Time
UrlPath
}
func (n Node) RSSlink() template.HTML {
return n.RSSLink
return n.RSSLink
}
type UrlPath struct {
Url string
Permalink template.HTML
Slug string
Section string
Url string
Permalink template.HTML
Slug string
Section string
}