1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684
|
# Headings options
[](){#option-heading}
## `heading`
- **:octicons-package-24: Type [`str`][] :material-equal: `""`{ title="default value" }**
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
A custom string to use as the heading of the root object (i.e. the object specified directly after the identifier `:::`). This will override the default heading generated by the plugin. See also the [`toc_label` option][option-toc_label].
WARNING: **Not advised to be used as a global configuration option.** This option is not advised to be used as a global configuration option, as it will override the default heading for all objects. It is recommended to use it only in specific cases where you want to override the heading for a specific object.
```md title="in docs/some_page.md (local configuration)"
::: path.to.module
options:
heading: "My fancy module"
```
[](){#option-heading_level}
## `heading_level`
- **:octicons-package-24: Type [`int`][] :material-equal: `2`{ title="default value" }**
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
The initial heading level to use.
When injecting documentation for an object,
the object itself and its members are rendered.
For each layer of objects, we increase the heading level by 1.
The initial heading level will be used for the first layer.
If you set it to 3, then headings will start with `<h3>`.
If the [heading for the root object][show_root_heading] is not shown,
then the initial heading level is used for its members.
```yaml title="in mkdocs.yml (global configuration)"
plugins:
- mkdocstrings:
handlers:
python:
options:
heading_level: 2
```
```md title="or in docs/some_page.md (local configuration)"
::: path.to.module
options:
heading_level: 3
```
/// admonition | Preview
type: preview
//// tab | With level 3 and root heading
<h3><code>module</code> (3)</h3>
<p>Docstring of the module.</p>
<h4><code>ClassA</code> (4)</h4>
<p>Docstring of class A.</p>
<h4><code>ClassB</code> (4)</h4>
<p>Docstring of class B.</p>
<h5><code>method_1</code> (5)</h5>
<p>Docstring of the method.</p>
////
//// tab | With level 3, without root heading
<p>Docstring of the module.</p>
<h3><code>ClassA</code> (3)</h3>
<p>Docstring of class A.</p>
<h3><code>ClassB</code> (3)</h3>
<p>Docstring of class B.</p>
<h4><code>method_1</code> (4)</h4>
<p>Docstring of the method.</p>
////
///
[](){#option-parameter_headings}
## `parameter_headings`
[:octicons-tag-24: Insiders 1.6.0](../../insiders/changelog.md#1.6.0)
- **:octicons-package-24: Type [`bool`][] :material-equal: `False`{ title="default value" }**
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
Whether to render headings for function/method parameters.
With this option enabled, each function/method parameter
(including parameters of `__init__` methods merged in their parent class
with the [`merge_init_into_class`][] option)
gets a permalink, an entry in the Table of Contents,
and an entry in the generated objects inventory.
The permalink and inventory entry allow cross-references
from internal and external pages.
The identifier used in the permalink and inventory is of the following form:
`path.to.function(param_name)`. To manually cross-reference a parameter,
you can therefore use this Markdown syntax:
```md
- Class parameter: [`param`][package.module.Class(param)]
- Method parameter: [`param`][package.module.Class.method(param)]
- Function parameter: [`param`][package.module.function(param)]
- Variadic positional parameters: [`*args`][package.module.function(*args)]
- Variadic keyword parameters: [`**kwargs`][package.module.function(**kwargs)]
```
Enabling this option along with [`signature_crossrefs`][] will automatically
render cross-references to parameters in class/function/method signatures
and attributes values.
```yaml title="in mkdocs.yml (global configuration)"
plugins:
- mkdocstrings:
handlers:
python:
options:
parameter_headings: false
```
```md title="or in docs/some_page.md (local configuration)"
::: path.to.module
options:
parameter_headings: true
```
/// admonition | Preview: Cross-references
type: preview
```md exec="on"
::: package.get_version
options:
heading_level: 3
parameter_headings: true
docstring_section_style: list
::: package.current_version
options:
heading_level: 3
line_length: 100
```
///
/// admonition | Preview: Parameter sections
type: preview
//// tab | Table style
```md exec="on"
::: package.get_version
options:
heading_level: 3
show_root_heading: false
show_root_toc_entry: false
parameter_headings: true
docstring_section_style: table
show_docstring_returns: false
show_docstring_description: false
```
////
//// tab | List style
```md exec="on"
::: package.get_version
options:
heading_level: 3
show_root_heading: false
show_root_toc_entry: false
parameter_headings: true
docstring_section_style: list
show_docstring_returns: false
show_docstring_description: false
```
////
//// tab | Spacy style
```md exec="on"
::: package.get_version
options:
heading_level: 3
show_root_heading: false
show_root_toc_entry: false
parameter_headings: true
docstring_section_style: spacy
show_docstring_returns: false
show_docstring_description: false
```
////
///
/// admonition | Preview: Table of contents (with symbol types)
type: preview
<code class="doc-symbol doc-symbol-toc doc-symbol-function"></code> get_version<br>
<code class="doc-symbol doc-symbol-toc doc-symbol-parameter" style="margin-left: 16px;"></code> dist
To customize symbols, see [Customizing symbol types](../customization.md/#symbol-types).
///
[](){#option-show_root_heading}
## `show_root_heading`
- **:octicons-package-24: Type [`bool`][] :material-equal: `False`{ title="default value" }**
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
Show the heading of the object at the root of the documentation tree
(i.e. the object referenced by the identifier after `:::`).
It is pretty common to inject documentation for one module per page,
especially when following our [automatic reference pages recipe][autopages recipe].
Since each page already has a title, usually being the module's name,
we can spare one heading level by not showing the heading for the module itself
(heading levels are limited to 6 by the HTML specification).
Sparing that extra level can be helpful when your objects tree is deeply nested
(e.g. method in a class in a class in a module).
If your objects tree is not deeply nested, and you are injecting documentation
for many different objects on a single page, it might be preferable to render
the heading of each object.
```yaml title="in mkdocs.yml (global configuration)"
plugins:
- mkdocstrings:
handlers:
python:
options:
show_root_heading: false
```
```md title="or in docs/some_page.md (local configuration)"
::: path.to.ClassA
options:
show_root_heading: true
::: path.to.ClassB
options:
show_root_heading: true
```
/// admonition | Preview
type: preview
//// tab | With root heading
<h2><code>ClassA</code> (2)</h2>
<p>Docstring of class A.</p>
<h3><code>method_a1</code> (3)</h3>
<p>Docstring of the method.</p>
<h2><code>ClassB</code> (2)</h2>
<p>Docstring of class B.</p>
<h3><code>method_b1</code> (3)</h3>
<p>Docstring of the method.</p>
////
//// tab | Without root heading
<p>Docstring of class A.</p>
<h2><code>method_a1</code> (2)</h2>
<p>Docstring of the method.</p>
<p>Docstring of class B.</p>
<h2><code>method_b1</code> (2)</h2>
<p>Docstring of the method.</p>
////
///
[](){#option-show_root_toc_entry}
## `show_root_toc_entry`
- **:octicons-package-24: Type [`bool`][] :material-equal: `True`{ title="default value" }**
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
If the root heading is not shown, at least add a ToC entry for it.
If you inject documentation for an object in the middle of a page,
after long paragraphs, and without showing the [root heading][show_root_heading],
then you will not be able to link to this particular object
as it won't have a permalink and will be "lost" in the middle of text.
In that case, it is useful to add a hidden anchor to the document,
which will also appear in the table of contents.
In other cases, you might want to disable the entry to avoid polluting the ToC.
It is not possible to show the root heading *and* hide the ToC entry.
```yaml title="in mkdocs.yml (global configuration)"
plugins:
- mkdocstrings:
handlers:
python:
options:
show_root_toc_entry: true
```
```md title="or in docs/some_page.md (local configuration)"
## Some heading
Lots of text.
::: path.to.object
options:
show_root_toc_entry: false
## Other heading.
More text.
```
/// admonition | Preview
type: preview
//// tab | With ToC entry
**Table of contents**
[Some heading](#permalink-to-some-heading){ title="#permalink-to-some-heading" }
[`object`](#permalink-to-object){ title="#permalink-to-object" }
[Other heading](#permalink-to-other-heading){ title="#permalink-to-other-heading" }
////
//// tab | Without ToC entry
**Table of contents**
[Some heading](#permalink-to-some-heading){ title="#permalink-to-some-heading" }
[Other heading](#permalink-to-other-heading){ title="#permalink-to-other-heading" }
////
///
[](){#option-show_root_full_path}
## `show_root_full_path`
- **:octicons-package-24: Type [`bool`][] :material-equal: `True`{ title="default value" }**
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
Show the full Python path for the root object heading.
The path of a Python object is the dot-separated list of names
under which it is accessible, for example `package.module.Class.method`.
With this option you can choose to show the full path of the object
you inject documentation for, or just its name. This option impacts
only the object you specify, not its members. For members, see the two
other options [`show_root_members_full_path`][]
and [`show_object_full_path`][].
```yaml title="in mkdocs.yml (global configuration)"
plugins:
- mkdocstrings:
handlers:
python:
options:
show_root_full_path: true
```
```md title="or in docs/some_page.md (local configuration)"
::: package.module.Class.method
options:
show_root_full_path: false
```
/// admonition | Preview
type: preview
//// tab | With root full path
<h2><code>package.module.Class.method</code></h2>
<p>Docstring of the method.</p>
////
//// tab | Without root full path
<h2><code>method</code></h2>
<p>Docstring of the method.</p>
////
///
[](){#option-show_root_members_full_path}
## `show_root_members_full_path`
- **:octicons-package-24: Type [`bool`][] :material-equal: `False`{ title="default value" }**
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
Show the full Python path of the root members.
This option does the same thing as [`show_root_full_path`][],
but for direct members of the root object instead of the root object itself.
To show the full path for every member recursively,
see [`show_object_full_path`][].
```yaml title="in mkdocs.yml (global configuration)"
plugins:
- mkdocstrings:
handlers:
python:
options:
show_root_members_full_path: true
```
```md title="or in docs/some_page.md (local configuration)"
::: package.module
options:
show_root_members_full_path: false
```
/// admonition | Preview
type: preview
//// tab | With members full path
<p>Docstring of the module.</p>
<h2><code>package.module.Class</code></h2>
<p>Docstring of the class.</p>
<h3><code>method</code></h3>
<p>Docstring of the method.</p>
////
//// tab | Without members full path
<p>Docstring of the module.</p>
<h2><code>Class</code></h2>
<p>Docstring of the class.</p>
<h3><code>method</code></h3>
<p>Docstring of the method.</p>
////
///
[](){#option-show_object_full_path}
## `show_object_full_path`
- **:octicons-package-24: Type [`bool`][] :material-equal: `False`{ title="default value" }**
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
Show the full Python path of every object.
Same as for [`show_root_members_full_path`][],
but for every member, recursively. This option takes precedence over
[`show_root_members_full_path`][]:
`show_root_members_full_path` | `show_object_full_path` | Direct root members path
----------------------------- | ----------------------- | ------------------------
False | False | Name only
False | True | Full
True | False | Full
True | True | Full
```yaml title="in mkdocs.yml (global configuration)"
plugins:
- mkdocstrings:
handlers:
python:
options:
show_object_full_path: true
```
```md title="or in docs/some_page.md (local configuration)"
::: package.module
options:
show_object_full_path: false
```
/// admonition | Preview
type: preview
//// tab | With objects full path
<p>Docstring of the module.</p>
<h2><code>package.module.Class</code></h2>
<p>Docstring of the class.</p>
<h3><code>package.module.Class.method</code></h3>
<p>Docstring of the method.</p>
////
//// tab | Without objects full path
<p>Docstring of the module.</p>
<h2><code>Class</code></h2>
<p>Docstring of the class.</p>
<h3><code>method</code></h3>
<p>Docstring of the method.</p>
////
///
[](){#option-show_category_heading}
## `show_category_heading`
- **:octicons-package-24: Type [`bool`][] :material-equal: `False`{ title="default value" }**
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
When [grouped by categories][group_by_category], show a heading for each category.
These category headings will appear in the table of contents,
allowing you to link to them using their permalinks.
WARNING: **Not recommended with deeply nested objects.**
When injecting documentation for deeply nested objects,
you'll quickly run out of heading levels, and the objects
at the bottom of the tree risk all getting documented
using H6 headings, which might decrease the readability
of your API docs.
```yaml title="in mkdocs.yml (global configuration)"
plugins:
- mkdocstrings:
handlers:
python:
options:
group_by_category: true
show_category_heading: true
```
```md title="or in docs/some_page.md (local configuration)"
::: package.module
options:
group_by_category: true
show_category_heading: false
```
/// admonition | Preview
type: preview
//// tab | With category headings
<p>Docstring of the module.</p>
<h2>Attributes (2)</h2>
<h3><code>module_attribute</code> (3)</h3>
<p>Docstring of the module attribute.</p>
<h2>Classes (2)</h2>
<h3><code>Class</code> (3)</h3>
<p>Docstring of the class.</p>
<h4>Attributes (4)</h4>
<h5><code>class_attribute</code> (5)</h5>
<p>Docstring of the class attribute.</p>
<h4>Methods (4)</h4>
<h5><code>method</code> (5)</h5>
<p>Docstring of the method.</p>
////
//// tab | Without category headings
<p>Docstring of the module.</p>
<h2><code>module_attribute</code> (2)</h2>
<p>Docstring of the module attribute.</p>
<h2><code>Class</code> (2)</h2>
<p>Docstring of the class.</p>
<h3><code>class_attribute</code> (3)</h3>
<p>Docstring of the class attribute.</p>
<h3><code>method</code> (3)</h3>
<p>Docstring of the method.</p>
////
///
[](){#option-show_symbol_type_heading}
## `show_symbol_type_heading`
[:octicons-tag-24: Insiders 1.1.0](../../insiders/changelog.md#1.1.0)
- **:octicons-package-24: Type [`bool`][] :material-equal: `False`{ title="default value" }**
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
Show the symbol type in headings.
This option will prefix headings with
<code class="doc-symbol doc-symbol-attribute"></code>,
<code class="doc-symbol doc-symbol-function"></code>,
<code class="doc-symbol doc-symbol-method"></code>,
<code class="doc-symbol doc-symbol-class"></code> or
<code class="doc-symbol doc-symbol-module"></code> types.
See also [`show_symbol_type_toc`][show_symbol_type_toc].
To customize symbols, see [Customizing symbol types](../customization.md/#symbol-types).
```yaml title="in mkdocs.yml (global configuration)"
plugins:
- mkdocstrings:
handlers:
python:
options:
show_symbol_type_heading: true
```
```md title="or in docs/some_page.md (local configuration)"
::: package.module
options:
show_symbol_type_heading: false
```
/// admonition | Preview
type: preview
//// tab | With symbol type in headings
<h1><code class="doc-symbol doc-symbol-module"></code> <code>module</code></h1>
<p>Docstring of the module.</p>
<h2><code class="doc-symbol doc-symbol-attribute"></code> <code>attribute</code></h2>
<p>Docstring of the module attribute.</p>
<h2><code class="doc-symbol doc-symbol-function"></code> <code>function</code></h2>
<p>Docstring of the function.</p>
<h2><code class="doc-symbol doc-symbol-class"></code> <code>Class</code></h2>
<p>Docstring of the class.</p>
<h3><code class="doc-symbol doc-symbol-method"></code> <code>method</code></h3>
<p>Docstring of the method.</p>
////
//// tab | Without symbol type in headings
<h1><code>module</code></h1>
<p>Docstring of the module.</p>
<h2><code>attribute</code></h2>
<p>Docstring of the module attribute.</p>
<h2><code>function</code></h2>
<p>Docstring of the function.</p>
<h2><code>Class</code></h2>
<p>Docstring of the class.</p>
<h3><code>method</code></h3>
<p>Docstring of the method.</p>
////
///
[](){#option-show_symbol_type_toc}
## `show_symbol_type_toc`
[:octicons-tag-24: Insiders 1.1.0](../../insiders/changelog.md#1.1.0)
- **:octicons-package-24: Type [`bool`][] :material-equal: `False`{ title="default value" }**
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
Show the symbol type in the Table of Contents.
This option will prefix items in the ToC with
<code class="doc-symbol doc-symbol-attribute"></code>,
<code class="doc-symbol doc-symbol-function"></code>,
<code class="doc-symbol doc-symbol-method"></code>,
<code class="doc-symbol doc-symbol-class"></code> or
<code class="doc-symbol doc-symbol-module"></code> types.
See also [`show_symbol_type_heading`][show_symbol_type_heading].
To customize symbols, see [Customizing symbol types](../customization.md/#symbol-types).
```yaml title="in mkdocs.yml (global configuration)"
plugins:
- mkdocstrings:
handlers:
python:
options:
show_symbol_type_toc: true
```
```md title="or in docs/some_page.md (local configuration)"
::: package.module
options:
show_symbol_type_toc: false
```
/// admonition | Preview
type: preview
//// tab | With symbol type in ToC
<ul style="list-style: none;">
<li><code class="doc-symbol doc-symbol-module"></code> module</li>
<li><code class="doc-symbol doc-symbol-attribute"></code> attribute</li>
<li><code class="doc-symbol doc-symbol-function"></code> function</li>
<li><code class="doc-symbol doc-symbol-class"></code> Class
<ul style="list-style: none;">
<li><code class="doc-symbol doc-symbol-method"></code> method</li>
</ul>
</li>
</ul>
////
//// tab | Without symbol type in ToC
<ul style="list-style: none;">
<li>module</li>
<li>attribute</li>
<li>function</li>
<li>Class
<ul style="list-style: none;">
<li>method</li>
</ul>
</li>
</ul>
////
///
[](){#option-toc_label}
## `toc_label`
- **:octicons-package-24: Type [`str`][] :material-equal: `""`{ title="default value" }**
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
A custom string to use as the label in the Table of Contents for the root object (i.e. the one specified directly after the identifier `:::`). This will override the default label generated by the plugin. See also the [`heading` option][option-heading].
WARNING: **Not advised to be used as a global configuration option.** This option is not advised to be used as a global configuration option, as it will override the default label for all objects. It is recommended to use it only in specific cases where you want to override the label for a specific object.
NOTE: **Use with/without `heading`.** If you use this option without specifying a custom `heading`, the default heading will be used in the page, but the label in the Table of Contents will be the one you specified. By providing both an option for `heading` and `toc_label`, we leave the customization entirely up to you.
```md title="in docs/some_page.md (local configuration)"
::: path.to.module
options:
heading: "My fancy module"
toc_label: "My fancy module"
```
|