forked from AkkomaGang/akkoma
markdown.ex: do not fail if there is no children
This commit is contained in:
parent
e0d8c8897e
commit
106afaed58
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ def process(descriptions) do
|
||||||
|
|
||||||
IO.write(file, "#{group[:description]}\n")
|
IO.write(file, "#{group[:description]}\n")
|
||||||
|
|
||||||
for child <- group[:children] do
|
for child <- group[:children] || [] do
|
||||||
print_child_header(file, child)
|
print_child_header(file, child)
|
||||||
|
|
||||||
print_suggestions(file, child[:suggestions])
|
print_suggestions(file, child[:suggestions])
|
||||||
|
|
Loading…
Reference in a new issue