forked from osprey-oss/cookiecutter-uv
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
67 lines (64 loc) · 1.95 KB
/
mkdocs.yml
File metadata and controls
67 lines (64 loc) · 1.95 KB
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
site_name: gabocutter
repo_url: https://github.com/gabrieltorresgamez/gabocutter
site_url: https://gabrieltorresgamez.github.io/gabocutter
site_description: My cookiecutter template for data science projects.
site_author: Gabriel Torres Gamez
edit_uri: edit/main/docs/
repo_name: gabrieltorresgamez/gabocutter
copyright: Maintained by <a href="https://torres.swiss">Gabriel Torres Gamez</a>.
nav:
- Home: index.md
- Tutorial: tutorial.md
- Features:
- Linting: features/linting.md
- Makefile: features/makefile.md
- Dependency management with uv: features/uv.md
- Testing with Pytest: features/pytest.md
- Documentation with MkDocs: features/mkdocs.md
- Containerization with Docker: features/docker.md
- Prompt Arguments: prompt_arguments.md
plugins:
- search
extra_css:
- stylesheets/extra.css
theme:
name: material
feature:
tabs: true
features:
- content.code.copy
palette:
# Note: Using the system theme works with the insiders version
# https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/#automatic-light-dark-mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: astral-light
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: astral-dark
toggle:
icon: material/brightness-4
name: Switch to system preference
icon:
repo: fontawesome/brands/github
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/gabrieltorresgamez/gabocutter
markdown_extensions:
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences