-
Notifications
You must be signed in to change notification settings - Fork 25
/
mkdocs.yml
101 lines (97 loc) · 3.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
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
site_name: Fondant
site_url: https://fondant.ai/en/latest
repo_url: https://github.com/ml6team/fondant
repo_name: ml6team/fondant
theme:
name: material
favicon: art/fondant_logo_single_letter.svg
logo: art/fondant_logo_single_letter.svg
palette:
# Palette toggle for light mode
- scheme: default
media: "(prefers-color-scheme: light)"
primary: deep orange
accent: orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: orange
accent: deep orange
toggle:
icon: material/brightness-4
name: Switch to light mode
custom_dir: docs/overrides
features:
- content.code.copy
- content.tabs.link
- navigation.tracking
- navigation.footer
- navigation.tabs
- announce.dismiss
extra_css:
- stylesheets/extra.css
nav:
- Documentation:
- Home: index.md
- Using the documentation: documentation_guide.md
- Getting Started:
- Installation: guides/installation.md
- Get your first dataset: guides/first_dataset.md
- Building your own dataset: guides/build_a_simple_dataset.md
- Implementing custom components: guides/implement_custom_components.md
- Dataset: dataset.md
- Components:
- Components: components/components.md
- Lightweight components: components/lightweight_components.md
- Containerized components: components/containerized_components.md
- Component spec: components/component_spec.md
- Publishing components: components/publishing_components.md
- Runners:
- Local: runners/local.md
- Vertex: runners/vertex.md
- Kubeflow: runners/kfp.md
- SageMaker: runners/sagemaker.md
- Explorer: data_explorer.md
- Advanced:
- Architecture: architecture.md
- Caching: caching.md
- Handling partitions: partitions.md
- Setting up Kubeflow: runners/kfp_infrastructure.md
- Hub: components/hub.md
- Blog:
- blog/index.md
plugins:
- mkdocstrings
- search
- blog:
archive_date_format: yyyy/MM
archive_url_date_format: yyyy/MM
archive_url_format: "{date}"
post_excerpt: required
- redirects:
redirect_maps:
'announcements/CC_25M_community.md': 'blog/posts/2023-09-27|CC_25M_community.md'
'announcements/CC_25M_press_release.md': 'blog/CC_25M_press_release.md'
markdown_extensions:
- pymdownx.snippets:
check_paths: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.details
- attr_list
#- pymdownx.emoji:
# emoji_index: !!python/name:materialx.emoji.twemoji
# emoji_generator: !!python/name:materialx.emoji.to_svg
- admonition
- def_list
- toc:
permalink: "#"