forked from prefix-dev/pixi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
96 lines (84 loc) · 2.18 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
site_name: "Pixi by prefix.dev"
site_url: https://prefix-dev.github.io/pixi
theme:
name: material
custom_dir: docs/overrides
favicon: assets/pixi.png
logo: assets/pixi.png
site_url: https://prefix.dev
font:
text: Red Hat Text
code: JetBrains Mono
palette:
primary: yellow
accent: yellow
scheme: slate
icon:
edit: material/pencil
view: material/eye
features:
- content.tabs.link
- content.code.copy
- content.action.edit
# - 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/pixi/
edit_uri: edit/main/docs/
markdown_extensions:
- admonition
- footnotes
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
- 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
nav:
- Getting Started : index.md
- Basic Usage: basic_usage.md
- Reference (CLI): cli.md
- Configuration: configuration.md
- Vision: vision.md
- In-depth:
- Authentication: advanced/authentication.md
- Tasks: advanced/advanced_tasks.md
- Multi Platform: advanced/multi_platform_configuration.md
- Info command: advanced/explain_info_command.md
- Channel Logic: advanced/channel_priority.md
- Examples:
- C++/Cmake: examples/cpp-sdl.md
- OpenCV: examples/opencv.md
- ROS2: examples/ros2-nav2.md
- Design Proposals:
- Multi Env: design_proposals/multi_environment_proposal.md
- Community: Community.md
- FAQ: FAQ.md
plugins:
- search
- social