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 b212465 commit 1405b4dCopy full SHA for 1405b4d
quartodoc/layout.py
@@ -161,6 +161,20 @@ class Text(_Docable):
161
162
163
class ChoicesChildren(Enum):
164
+ """Options for how child members of a class or module should be documented.
165
+
166
+ Attributes
167
+ ----------
168
+ embedded:
169
+ Embed documentation inside the parent object's documentation.
170
+ flat:
171
+ Include documentation after the parent object's documentation.
172
+ separate:
173
+ Put documentation for members on their own, separate pages.
174
+ linked:
175
+ Include only a table of links to members (which may not be documented).
176
+ """
177
178
embedded = "embedded"
179
flat = "flat"
180
separate = "separate"
0 commit comments