mirror of
https://github.com/MillironX/nfdocs-parser.git
synced 2024-11-22 00:56:04 +00:00
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:
parent
6b0fee69b2
commit
c8d642002b
1 changed files with 16 additions and 15 deletions
|
@ -159,6 +159,7 @@ class NFDocs(Directive):
|
|||
|
||||
# Try to convert each definition to a node
|
||||
for block_type, block_docs in docstrings.items():
|
||||
if len(block_docs) > 0:
|
||||
block_section = nodes.section()
|
||||
block_section += nodes.title(text=block_type.capitalize())
|
||||
for proc_name, proc_docs in block_docs.items():
|
||||
|
|
Loading…
Reference in a new issue