-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
89 lines (82 loc) · 2.22 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
site_name: OpenAQ Python SDK
site_url: https://python.openaq.org
repo_url: https://github.com/openaq/openaq-python
repo_name: openaq/openaq-python
theme:
name: "material"
logo: assets/logo.svg
favicon: assets/favicon.ico
palette:
primary: custom
features:
- search.suggest
- content.tabs.link
- navigation.tracking
- navigation.path
- navigation.top
icon:
repo: fontawesome/brands/github
custom_dir: docs/overrides
extra:
analytics:
provider: plausible
domain: python.openaq.org
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: good
note: >-
Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: bad
note: >-
Thanks for your feedback!
social:
- icon: fontawesome/brands/slack
link: https://join.slack.com/t/openaq/shared_invite/zt-yzqlgsva-v6McumTjy2BZnegIK9XCVw
- icon: fontawesome/brands/x-twitter
link: https://x.com/@openaq
- icon: fontawesome/brands/github
link: https://github.com/openaq
- icon: fontawesome/brands/medium
link: https://openaq.medium.com
extra_css:
- stylesheets/extra.css
plugins:
- mkdocstrings
- search
- social
- privacy
- material-plausible
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- pymdownx.critic
- pymdownx.tilde
- toc:
title: On this page
nav:
- About OpenAQ Python: index.md
- Tutorial:
- tutorial/getting-started.md
- How-To Guides:
- Working with the client: how-to-guides/working-with-the-client.md
- Paging results: how-to-guides/paging-results.md
- Query locations near a point: how-to-guides/query-locations-near-a-point.md
- Reference:
- OpenAQ: reference/openaq.md
- AsyncOpenAQ: reference/asyncopenaq.md
- Responses: reference/responses.md
- Exceptions: reference/exceptions.md