Please help me with combined Pydoc-Markdown and MKDocs #243
Unanswered
walter-weinmann
asked this question in
Q&A
Replies: 2 comments 5 replies
-
Hi @walter-weinmann , Sorry for the late response. You can configure the directory in which the Mkdocs renderer generates the pages in using the [[tool.pydoc-markdown.loaders]]
type = "python"
search_path = [ "src" ]
[tool.pydoc-markdown.renderer]
type = "mkdocs"
output_directory = "."
content_directory_name = "docs"
[[tool.pydoc-markdown.renderer.pages]]
title = "API Documentation"
name = "index"
contents = [ "dcr.*" ] To run Pydoc-Markdown, you don't have to supply any arguments. But you can pass
Can you give this a try and let me know how it works for you? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In my Python project, the documentation is created with MKDocs. I now want to create the API documentation with Pydoc-Markdown and add it to the MKDocs documentation. My directory layout for the documentation (docs) and the source files (src) can be seen here:
Now how do I adapt the MKDocs example in the Pydoc Markdown repository in order to
In addition, what must the command line look like in my case?
pydoc-markdown ???
I would be very grateful if someone could help me with this.
Beta Was this translation helpful? Give feedback.
All reactions