generated from ydataai/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmkdocs.yml
142 lines (142 loc) · 4.03 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
site_name: YData SDK
repo_url: https://github.com/ydataai/ydata-sdk
repo_name: ydataai/ydata-sdk
edit_uri: ""
dev_addr: 0.0.0.0:2345
site_dir: "static/docs"
nav:
- Getting started:
- 'index.md'
- Overview: 'index.md'
- Installation: 'getting-started/installation.md'
- Quickstart: 'getting-started/quickstart.md'
- Examples: 'getting-started/get_started_synthetic.md'
- Support:
- Help & Troubleshooting: 'support/help-troubleshooting.md'
- Contribution Guidelines: 'support/help-troubleshooting.md'
- Reference:
- Changelog: 'reference/changelog.md'
- API:
- Client: 'reference/api/common/client.md'
- Connectors:
- 'Connector': 'reference/api/connectors/connector.md'
- DataSources:
- 'DataSource': 'reference/api/datasources/datasource.md'
- 'DataSourceAttrs': 'reference/api/datasources/attributes.md'
- 'Metadata': 'reference/api/datasources/metadata.md'
- Synthesizers:
- Synthesizer: 'reference/api/synthesizers/base.md'
- Regular: 'reference/api/synthesizers/regular.md'
- TimeSeries: 'reference/api/synthesizers/timeseries.md'
- Types: 'reference/api/common/types.md'
theme:
name: material
language: en
palette:
- media: "(prefers-color-scheme: light)"
scheme: ydata
toggle:
icon: material/toggle-switch-off-outline
name: "Switch to dark mode"
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/toggle-switch
name: "Switch to light mode"
logo: 'https://assets.ydata.ai/logo_notext_nbg.png'
features:
- content.code.annotate
- content.tabs.link
- navigation.instant
- navigation.tracking
- navigation.top
- navigation.footer
- header.autohide
- navigation.tabs
- navigation.sections
- navigation.indexes
- toc.follow
- toc.integrate
icon:
admonition:
note: octicons/tag-16
abstract: octicons/checklist-16
info: octicons/info-16
tip: octicons/squirrel-16
success: octicons/check-16
question: octicons/question-16
warning: octicons/alert-16
failure: octicons/x-circle-16
danger: octicons/zap-16
bug: octicons/bug-16
example: octicons/beaker-16
quote: octicons/quote-16
markdown_extensions:
- def_list
- meta
- footnotes
- pymdownx.tasklist:
custom_checkbox: true
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- pymdownx.betterem
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.arithmatex:
generic: true
- tables
extra_css:
- stylesheets/extra.css
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/tablesort/5.2.1/tablesort.min.js
- javascripts/tablesort.js
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
extra:
version:
provider: mike
generator: false
social:
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/ydataai
watch:
- src
plugins:
- search:
lang: en
- autorefs
- mkdocstrings:
custom_templates: templates
default_handler: python
handlers:
python:
selection:
filters: ["!^_", "!^__"]
import:
- https://docs.python.org/3/objects.inv
- http://pandas.pydata.org/pandas-docs/stable/objects.inv
setup_commands:
- import sys
- sys.path.append('../src')
merge_init_into_class: yes
show_submodules: no