removed get_parents func
This commit is contained in:
parent
170ed10a17
commit
c92fde4988
18
main.go
18
main.go
@ -33,22 +33,6 @@ func get_heading_level(heading_text string) int {
|
||||
return level
|
||||
}
|
||||
|
||||
func get_parents(headings []heading) {
|
||||
for index, _ := range headings {
|
||||
if index == 0 {
|
||||
headings[index].parent = nil
|
||||
continue
|
||||
}
|
||||
|
||||
for i := (index - 1); i >= 0; i-- {
|
||||
if headings[i].level < headings[index].level {
|
||||
headings[index].parent = &headings[i]
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func parse_file(file_name string) []heading {
|
||||
file_content_raw, err := os.ReadFile(file_name)
|
||||
|
||||
@ -76,8 +60,6 @@ func main() {
|
||||
|
||||
headings = parse_file(file_name)
|
||||
|
||||
get_parents(headings)
|
||||
|
||||
fmt.Println(path.Base(file_name))
|
||||
tree(-1, "", headings)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user