We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3889065 + 21b4071 commit 382e500Copy full SHA for 382e500
sphinxarg/ext.py
@@ -477,7 +477,8 @@ def run(self):
477
items.append(self._nested_parse_paragraph(result['description']))
478
items.append(nodes.literal_block(text=result['usage']))
479
items.extend(print_action_groups(result, nested_content, markDownHelp))
480
- items.extend(print_subcommands(result, nested_content, markDownHelp))
+ if 'nosubcommands' not in self.options:
481
+ items.extend(print_subcommands(result, nested_content, markDownHelp))
482
if 'epilog' in result and 'noepilog' not in self.options:
483
items.append(self._nested_parse_paragraph(result['epilog']))
484
0 commit comments