forked from mckinsey/vizro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
156 lines (149 loc) · 5.08 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
152
153
154
155
156
site_name: Vizro
site_url: https://vizro.readthedocs.io/en/stable/
nav:
- Vizro: index.md
- Tutorials:
- A first dashboard: pages/tutorials/first-dashboard.md
- Explore Vizro: pages/tutorials/explore-components.md
- How-to guides:
- FUNDAMENTALS:
- Install Vizro: pages/user-guides/install.md
- Dashboards: pages/user-guides/dashboard.md
- Pages: pages/user-guides/pages.md
- Run methods: pages/user-guides/run.md
- COMPONENTS:
- Overview: pages/user-guides/components.md
- Graphs: pages/user-guides/graph.md
- Tables: pages/user-guides/table.md
- Figures: pages/user-guides/figure.md
- Cards & buttons: pages/user-guides/card-button.md
- Containers: pages/user-guides/container.md
- Tabs: pages/user-guides/tabs.md
- CONTROLS:
- Filters: pages/user-guides/filters.md
- Parameters: pages/user-guides/parameters.md
- Selectors: pages/user-guides/selectors.md
- NAVIGATION:
- Navigation: pages/user-guides/navigation.md
- VISUAL FORMATTING:
- Overview: pages/user-guides/visual-formatting.md
- Layouts: pages/user-guides/layouts.md
- Themes: pages/user-guides/themes.md
- Assets: pages/user-guides/assets.md
- Custom CSS: pages/user-guides/custom-css.md
- ACTIONS:
- Actions: pages/user-guides/actions.md
- DATA:
- Data: pages/user-guides/data.md
- Kedro Data Catalog: pages/user-guides/kedro-data-catalog.md
- EXTENSIONS:
- Overview: pages/user-guides/extensions.md
- Custom charts: pages/user-guides/custom-charts.md
- Custom tables: pages/user-guides/custom-tables.md
- Custom components: pages/user-guides/custom-components.md
- Custom actions: pages/user-guides/custom-actions.md
- Custom figures: pages/user-guides/custom-figures.md
- API Reference:
- Vizro: pages/API-reference/vizro.md
- Models: pages/API-reference/models.md
- Action functions: pages/API-reference/action-callables.md
- Table functions: pages/API-reference/table-callables.md
- Figure functions: pages/API-reference/figure-callables.md
- Explanation:
- FAQs: pages/explanation/faq.md
- Contribute to Vizro: pages/explanation/contributing.md
- Documentation style: pages/explanation/documentation-style-guide.md
- Authors: pages/explanation/authors.md
- Examples:
- Example dashboard code: pages/examples/examples.md
- Examples from Vizro users: pages/examples/your-examples.md
- Vizro-AI:
- Vizro-AI: https://vizro.readthedocs.io/projects/vizro-ai/
repo_url: https://github.com/mckinsey/vizro
repo_name: mckinsey/vizro
theme:
name: material
language: en
palette:
- scheme: default
font:
text: Inter
code: Inter Regular
icon:
repo: fontawesome/brands/github
features:
- navigation.instant
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.tracking
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.copy
- content.code.annotate
watch:
- src
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.arithmatex:
generic: true
- footnotes
- pymdownx.keys
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- name: python
class: "highlight"
validator: !!python/name:mkdocs_pycafe.validator
format: !!python/object/apply:mkdocs_pycafe.formatter
kwds:
type: vizro
requirements: |
vizro==0.1.24
- pymdownx.tabbed:
alternate_style: true
- pymdownx.mark
- md_in_html
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
plugins:
- search
- autorefs
- mkdocstrings:
handlers:
python:
options:
show_source: false #currently doesn't show source at correct level, and not for pydantic models
docstring_style: google
merge_init_into_class: true
docstring_section_style: list
separate_signature: true
# filters: ["!^_"]
show_root_heading: true
docstring_options:
ignore_init_summary: true
warn_unknown_params: false
returns_named_value: false
paths: [src]
- git-revision-date-localized:
enable_creation_date: false
extra_css:
- stylesheets/extra.css
# Strictest settings possible, and will be elevated to ERROR when run with --strict.
# See https://www.mkdocs.org/user-guide/configuration/#validation.
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn