We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42e1d17 commit 51e8622Copy full SHA for 51e8622
breathe/directives/content_block.py
@@ -106,7 +106,10 @@ class DoxygenNamespaceDirective(_DoxygenContentBlockDirective):
106
class DoxygenGroupDirective(_DoxygenContentBlockDirective):
107
kind = "group"
108
option_spec = _DoxygenContentBlockDirective.option_spec.copy()
109
- option_spec.update({"inner": flag, "no-title": flag})
+ option_spec.update({
110
+ "inner": flag,
111
+ "no-title": flag,
112
+ })
113
114
115
class DoxygenPageDirective(_DoxygenContentBlockDirective):
0 commit comments