Add check for zero docs of that type

Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
This commit is contained in:
Thomas A. Christensen II 2022-01-10 17:38:32 -06:00
parent 6b0fee69b2
commit c8d642002b
Signed by: millironx
GPG key ID: 139C07724802BC5D

View file

@ -159,22 +159,23 @@ class NFDocs(Directive):
# Try to convert each definition to a node # Try to convert each definition to a node
for block_type, block_docs in docstrings.items(): for block_type, block_docs in docstrings.items():
block_section = nodes.section() if len(block_docs) > 0:
block_section += nodes.title(text=block_type.capitalize()) block_section = nodes.section()
for proc_name, proc_docs in block_docs.items(): block_section += nodes.title(text=block_type.capitalize())
proc_section = nodes.section() for proc_name, proc_docs in block_docs.items():
proc_section += nodes.title(text=proc_name) proc_section = nodes.section()
proc_section += nodes.paragraph(text=proc_docs["summary"]) proc_section += nodes.title(text=proc_name)
io_methods = ["input", "output"] proc_section += nodes.paragraph(text=proc_docs["summary"])
for met in io_methods: io_methods = ["input", "output"]
if met in proc_docs.keys(): for met in io_methods:
io_table = params_to_table(met, proc_docs[met]) if met in proc_docs.keys():
proc_section += io_table io_table = params_to_table(met, proc_docs[met])
self.state_machine.document.note_implicit_target(proc_section) proc_section += io_table
block_section += proc_section self.state_machine.document.note_implicit_target(proc_section)
block_section += proc_section
self.state_machine.document.note_implicit_target(block_section) self.state_machine.document.note_implicit_target(block_section)
return_nodes.append(block_section) return_nodes.append(block_section)
return return_nodes return return_nodes