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.
1 parent 425745f commit 546b716Copy full SHA for 546b716
sphinxarg/ext.py
@@ -92,7 +92,7 @@ def print_action_groups(data, nested_content, markdown_help=False, settings=None
92
if 'action_groups' in data:
93
for action_group in data['action_groups']:
94
# Every action group is comprised of a section, holding a title, the description, and the option group (members)
95
- section = nodes.section(ids=[action_group['title']])
+ section = nodes.section(ids=[action_group['title'].replace(' ', '-').lower()])
96
section += nodes.title(action_group['title'], action_group['title'])
97
98
desc = []
0 commit comments