-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
30 lines (27 loc) · 1003 Bytes
/
mkdocs.yml
File metadata and controls
30 lines (27 loc) · 1003 Bytes
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
site_name: DSIS Python Client
site_url: https://equinor.github.io/dsis-python-client/
theme:
name: material
features:
- navigation.tabs # Enables navigational tabs at top of page.
markdown_extensions:
# Enable the Snippets extension to add the ability to embed content from
# external files.
# Ref: https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#snippets
- pymdownx.snippets
nav:
- Home: index.md
- Guides:
- Getting Started: guides/getting-started.md
- QueryBuilder Guide: guides/query-builder.md
- Working with Binary Data: guides/working-with-binary-data.md
- Advanced Serialization: guides/advanced-serialization.md
- Common vs Native Model: guides/common-vs-native-model.md
- API:
- Summary: api/index.md
- Examples:
- Fetch Polygons: notebooks/fetch_polygons_with_dsis_client.ipynb
- Changelog: changelog/index.md
plugins:
- mkdocs-jupyter:
include_source: true