17 lines
308 B
Go
17 lines
308 B
Go
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
|
|
}
|