mark2web/tree.go

19 lines
357 B
Go
Raw Normal View History

2019-03-18 15:14:41 +01:00
package mark2web
// TreeNode is complete config tree of content dir
type TreeNode struct {
InputPath string
OutputPath string
Hidden bool // for collections which are not part of the navigation
ColMap MapString
InputFiles []string
OtherFiles []string
Config *PathConfig
Sub []*TreeNode
2019-03-18 15:35:17 +01:00
root *TreeNode // shows always to root of tree
2019-03-18 15:14:41 +01:00
}