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 2a2a202 commit 2158e4cCopy full SHA for 2158e4c
sphinxarg/ext.py
@@ -113,6 +113,8 @@ def print_action_groups(
113
# Every action group is composed of a section, holding
114
# a title, the description, and the option group (members)
115
title_as_id = action_group['title'].replace(' ', '-').lower()
116
+ if data['name']:
117
+ title_as_id = f'{data["name"]}-{title_as_id}'
118
if id_prefix:
119
title_as_id = f'{id_prefix}-{title_as_id}'
120
section = nodes.section(ids=[title_as_id])
0 commit comments