type TOCEntry struct {
Selector string `json:"selector"`
Title string `json:"title"`
Level int `json:"level"`
Children []*TOCEntry `json:"children,omitempty"`
// contains filtered or unexported fields
}
TOCEntry is a node in the hierarchical table of contents.