-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
71 lines (71 loc) · 2.01 KB
/
mkdocs.yml
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
site_name: UV Data Science Project Mono-Repository Template
repo_url: https://github.com/tiefenthaler/uv-datascience-project-monorepo-template
copyright: Copyright © 2025 David Tiefenthaler
nav:
- Home:
- index.md
- About: about.md
- Guides:
- guides/index.md
- UV: guides/uv.md
- Ruff: guides/ruff.md
- PyRight: guides/pyright.md
- PyTest: guides/pytest.md
- Pre-Commit: guides/pre_commit.md
- CI-GitHub: guides/ci_github.md
- MkDocs: guides/mkdocs.md
- Docker-Production: guides/docker_prod.md
- Docker-VSCode-DevContainer: guides/docker_vscode_devcontainer.md
- Source Code API Reference:
- api/index.md
- Autoencoder: api/autoencoder.md
- Training: api/training.md
- FastAPI: api/fastapi_app.md
# NOTE: Does not support nested lists.
- Notebooks:
- Jupyter Notebook - App: notebooks/app_without_fastapi.ipynb
theme:
name: material
features:
- navigation.indexes
- navigation.sections
- navigation.expand
- navigation.path
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- content.code.copy
- content.code.select
plugins:
- search
- include-markdown
- mkdocstrings:
handlers:
python:
paths: [src] # search packages in the src folder
rendering:
show_root_heading: yes
merge_init_into_class: yes
docstring_section_style: spacy
options:
docstring_style: google
show_source: true
- mkdocs-jupyter:
# ignore_h1_titles: true # Ignore using first h1 as title, instead use filename.
extra_css:
- stylesheets/extra.css
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.blocks.caption
- pymdownx.details
- pymdownx.highlight:
use_pygments: true
pygments_lang_class: true
- pymdownx.superfences
- pymdownx.pathconverter
- pymdownx.snippets:
base_path: ["."] # Using --8<-- "dir/file.md" is relative to the base_path.
- toc:
permalink: true