-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
72 lines (65 loc) · 1.71 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
site_name: Python JSONPath
site_description: A flexible JSONPath engine for Python.
site_url: https://jg-rp.github.io/python-jsonpath/
theme:
name: "material"
palette:
- scheme: "default"
media: "(prefers-color-scheme: light)"
toggle:
icon: "material/weather-sunny"
name: "Switch to dark mode"
- scheme: "slate"
media: "(prefers-color-scheme: dark)"
primary: "blue"
toggle:
icon: "material/weather-night"
name: "Switch to light mode"
features:
- navigation.sections
- content.code.copy
repo_name: jg-rp/python-jsonpath
repo_url: https://github.com/jg-rp/python-jsonpath
edit_uri: ""
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_source: false
show_signature_annotations: true
show_root_heading: true
separate_signature: true
docstring_section_style: "spacy"
- autorefs
nav:
- Introduction: "index.md"
- Usage:
- Quick Start: "quickstart.md"
- Advanced Usage: "advanced.md"
- Command Line Interface: "cli.md"
- Guides:
- JSONPath Syntax: "syntax.md"
- Filter Functions: "functions.md"
- Query Iterators: "query.md"
- JSON Pointers: "pointers.md"
- Async Support: "async.md"
- API Reference:
- High Level API: "api.md"
- Low Level API: "custom_api.md"
- Exceptions: "exceptions.md"
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
extra_css:
- css/style.css
watch:
- jsonpath