-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
54 lines (51 loc) · 1.13 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
site_name: sfapi_client
watch: [src/sfapi_client]
nav:
- Overview: index.md
- Usage:
- QuickStart: quickstart/
- Examples: examples/
- API Reference: reference/
- Community:
- Contributing: community/contributing.md
theme:
name: "material"
features:
- content.code.copy
- navigation.sections
extra_javascript:
- javascript/apiselector.js
plugins:
- search
- autorefs
- mkdocs-jupyter:
include: ["*.ipynb"]
ignore: ["docs/*.py"]
- gen-files:
scripts:
- docs/gen_sync.py
- docs/gen_examples.py
- literate-nav:
nav_file: SUMMARY.txt
- section-index
- mkdocstrings:
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
options:
docstring_style: sphinx
docstring_options:
ignore_init_summary: yes
merge_init_into_class: yes
show_submodules: no
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true