-
Notifications
You must be signed in to change notification settings - Fork 45
/
mkdocs.yml
151 lines (129 loc) · 3.73 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: "rattler-build"
site_url: https://prefix-dev.github.io/rattler-build/
theme:
name: material
custom_dir: docs/overrides
favicon: assets/favicon.png
logo: assets/powerdrill.png
font:
text: Red Hat Text
code: JetBrains Mono
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: prefix-light
accent: prefix-light
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: prefix
accent: prefix
toggle:
icon: material/brightness-4
name: Switch to system preference
icon:
edit: material/pencil
view: material/eye
features:
- content.tabs.link
- content.code.copy
- content.action.edit
- content.code.annotate
# - content.code.select Sponsor only
- navigation.instant
- navigation.instant.progress
- navigation.tracking
- navigation.sections
- navigation.top
- navigation.footer
extra_css:
- stylesheets/extra.css
repo_url: https://github.com/prefix-dev/rattler-build/
edit_uri: edit/main/docs/
markdown_extensions:
- admonition
- def_list
- footnotes
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- toc:
toc_depth: 3
permalink: "#"
extra:
homepage: https://prefix.dev
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/prefix_dev
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/prefix-dev
- icon: fontawesome/brands/github
link: https://github.com/prefix-dev
version:
provider: mike
nav:
- Home: index.md
- High-level overview: highlevel.md
# - Tutorials:
# - Writing a recipe: tutorials/writing_recipe.md
- Examples:
- "Python": tutorials/python.md
- "C++": tutorials/cpp.md
- "Rust": tutorials/rust.md
- "Converting from conda-build": converting_from_conda_build.md
- Build options:
- Advanced options: build_options.md
- Selector syntax (if/then): selectors.md
- Build script: build_script.md
- Variants: variants.md
- Compilers and cross compilation: compilers.md
- Experimental features: experimental_features.md
- Multiple output cache: multiple_output_cache.md
- Generating recipes: recipe_generation.md
- Tips and tricks: tips_and_tricks.md
- Testing:
- Testing packages: testing.md
- Reproducible builds: rebuild.md
- User Experience:
- Terminal User Interface (TUI): tui.md
- Authentication & upload: authentication_and_upload.md
- Automatic recipe linting: automatic_linting.md
- Package:
- Package specification: package_spec.md
- Package scripts: special_files.md
- Package Internals: internals.md
- References:
- Recipe file: reference/recipe_file.md
- CLI: reference/cli.md
- Jinja: reference/jinja.md
plugins:
- search
- social
- mike:
# These fields are all optional; the defaults are as below...
# alias_type: symlink
# redirect_template: null
# deploy_prefix: ''
# canonical_version: null
# version_selector: true
# css_dir: css
# javascript_dir: js