docs
add_pkg_docs(pkg_path, parent_name, report, omit_package_name=False)
Add docstrings of the object to the report
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pkg_path |
Path
|
Path of the package for which to add the docs. |
required |
parent_name |
Union[NavEntry, Path, str]
|
Name under which it should be added in the Navigation. |
required |
report |
Report
|
the report to which it should be added. |
required |
omit_package_name |
bool
|
Should the package-name be omitted in the nav? |
False
|
Source code in mkreports/docs.py
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 |
|