forked from astral-sh/rye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
107 lines (100 loc) · 2.94 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
site_name: Rye
site_description: An Experimental Package Management Solution for Python
repo_name: mitsuhiko/rye
repo_url: https://github.com/mitsuhiko/rye
edit_uri: edit/main/docs/
copyright: Copyright © 2023 Armin Ronacher
nav:
- Welcome: index.md
- User Guide:
- guide/index.md
- Installation: guide/installation.md
- Basics: guide/basics.md
- Configuration: guide/config.md
- Shims: guide/shims.md
- Python Project: guide/pyproject.md
- Syncing and Locking: guide/sync.md
- Building and Publishing: guide/publish.md
- Dependency Sources: guide/sources.md
- Dependencies: guide/deps.md
- Toolchains:
- guide/toolchains/index.md
- Portable CPython: guide/toolchains/cpython.md
- PyPy: guide/toolchains/pypy.md
- Tools: guide/tools.md
- FAQ: guide/faq.md
- Community: community.md
- Changelog: changelog.md
- Philosophy: philosophy.md
theme:
name: material
custom_dir: docs/.overrides
features:
- navigation.instant
- navigation.tracking
- content.code.annotate
- content.code.copy
- content.tabs.link
- content.action.edit
- toc.integrate
- toc.follow
- navigation.path
- navigation.top
- navigation.tabs
- navigation.footer
font:
text: Inter
monospace: Fira Mono
favicon: static/favicon.svg
logo: static/logo.svg
# This is a bit of a hack. We don't actually want this toggle at all,
# it's all based on media queries. But to abuse the mkdocs theme it
# still uses the toggles to trigger all the default logic. We will
# then hide this selector though with CSS. The auto updating then
# happens in palette.html with JavaScript.
palette:
scheme: default
primary: custom
accent: custom
markdown_extensions:
- attr_list
- admonition
- def_list
- pymdownx.details
- pymdownx.keys
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- mdx_gh_links:
user: mitsuhiko
repo: rye
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
plugins:
- search
- mkdocs-simple-hooks:
hooks:
on_post_build: "docs.hooks:copy_get"
- mkdocs-version-annotations:
version_added_title: 'new in **\1**'
version_changed_title: 'changed in **\1**'
version_removed_title: 'removed in **\1**'
- include-markdown:
preserve_includer_indent: true
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/mitsuhiko
name: Follow @mitsuhiko on GitHub
- icon: fontawesome/brands/twitter
link: https://twitter.com/@mitsuhiko
name: Follow @mitsuhiko on Twitter
- icon: material/alpha-b-box
link: https://bsky.app/profile/mitsuhiko.at
name: Follow @mitsuhiko.at on Bluesky
- icon: fontawesome/brands/discord
link: https://discord.gg/drbkcdtSbg
name: Discuss Rye on Discord
extra_css:
- static/extra.css