// Default toml
configFormat string
configFileSet bool
- configSet bool
+ configSet bool
// Default is empty.
// TODO(bep) revisit this and consider always setting it to something.
func dumpPages(pages ...page.Page) {
fmt.Println("---------")
for _, p := range pages {
- var meta interface{}
- if p.File() != nil && p.File().FileInfo() != nil {
- meta = p.File().FileInfo().Meta()
- }
- fmt.Printf("Kind: %s Title: %-10s RelPermalink: %-10s Path: %-10s sections: %s Lang: %s Meta: %v\n",
- p.Kind(), p.Title(), p.RelPermalink(), p.Path(), p.SectionsPath(), p.Lang(), meta)
+ fmt.Printf("Kind: %s Title: %-10s RelPermalink: %-10s Path: %-10s sections: %s Lang: %s\n",
+ p.Kind(), p.Title(), p.RelPermalink(), p.Path(), p.SectionsPath(), p.Lang())
}
}