-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
58 lines (58 loc) · 1.63 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
site_name: Connect Python OpenAPI Client
site_url: https://github.com/cloudblue/connect-python-openapi-client
repo_name: cloudblue/connect-python-openapi-client
repo_url: https://github.com/cloudblue/connect-python-openapi-client
edit_uri: ""
copyright: Copyright © 2023 Ingram Micro. All Rights Reserved.
extra:
generator: false
extra_css:
- css/custom.css
theme:
name: 'material'
logo: logo_full.png
favicon: favicon.ico
palette:
- scheme: 'default'
media: '(prefers-color-scheme: light)'
toggle:
icon: 'material/lightbulb'
name: "Switch to dark mode"
- scheme: 'slate'
media: '(prefers-color-scheme: dark)'
primary: 'blue'
toggle:
icon: 'material/lightbulb-outline'
name: 'Switch to light mode'
markdown_extensions:
- admonition
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_signature_annotations: true
show_source: false
show_bases: false
show_root_toc_entry: false
watch:
- connect/client
- cnct
- docs
nav:
- Home: index.md
- User guide:
- Getting started: getting_started.md
- Namespaces and collections: namespaces_and_collections.md
- Working with resources: working_with_resources.md
- Querying collections: querying_collections.md
- Testing tools: testing.md
- API reference:
- Synchronous client: sync_client.md
- Asynchronous client: async_client.md
- R object: r_object.md