mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
It looks like mkdocstrings will fail out if it can't download the inv files. Unless there's a setting where you can tell it "try, but if you can't grab them just don't try and create links" the approach here seems reasonable and has the same effect. https://github.com/Textualize/textual/issues/2629#issuecomment-1566672594 for reference.
23 lines
479 B
YAML
23 lines
479 B
YAML
INHERIT: mkdocs-common.yml
|
|
|
|
repo_url: https://github.com/textualize/textual/
|
|
site_url: https://textual.textualize.io/
|
|
edit_uri: edit/main/docs/
|
|
|
|
plugins:
|
|
blog:
|
|
rss:
|
|
match_path: blog/posts/.*
|
|
date_from_meta:
|
|
as_creation: date
|
|
categories:
|
|
- categories
|
|
- release
|
|
- tags
|
|
mkdocstrings:
|
|
handlers:
|
|
python:
|
|
import:
|
|
- https://docs.python.org/3/objects.inv
|
|
- https://rich.readthedocs.io/en/stable/objects.inv
|