-
Hi, I'm using material for mkdocs together with mkdocstrings to create documentation for a python library. Because there are many subfolders in this library, some imports are added in Example: by doing this, the user can import How can I document this option when using mkdocstrings. For example, I am using the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hello! It is not clear exactly how you inject documentation into your pages, but you can:
Does that help? |
Beta Was this translation helpful? Give feedback.
Hello!
It is not clear exactly how you inject documentation into your pages, but you can:
package.ExampleClass
public (by listing it in__all__
), and mkdocstrings-python will render it when injecting docs forpackage
. its full path will show aspackage.ExampleClass
Does that help?