-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
65 lines (63 loc) · 1.64 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
site_name: cql2-rs
site_url: https://developmentseed.org/cql2-rs/
site_description: Command-line interface (CLI), Python package, and Rust crate for parsing, validating, and converting Common Query Language (CQL2)
site_author: David Bitner
repo_name: developmentseed/cql2-rs
repo_url: https://github.com/developmentseed/cql2-rs
extra:
social:
- icon: "fontawesome/brands/github"
version:
provider: mike
theme:
name: material
logo: ds-logo-hor--pos.svg
favicon: favicon.png
icon:
repo: fontawesome/brands/github
palette:
primary: blue
features:
- content.action.edit
- navigation.indexes
- navigation.tabs
- navigation.tracking
- search.share
- search.suggest
- toc.integrate
nav:
- cql2-rs: index.md
- Python: python.md
- CLI: cli.md
- Rust: https://docs.rs/cql2
- Wasm Playground: playground.md
plugins:
- search
- social
- mike:
alias_type: "copy"
canonical_version: "latest"
- mkdocstrings:
enable_inventory: true
handlers:
python:
options:
allow_inspection: false
docstring_section_style: list
docstring_style: google
merge_init_into_class: true
separate_signature: false
show_root_heading: true
show_source: false
show_symbol_type_toc: true
signature_crossrefs: true
docstring_options:
ignore_init_summary: false
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences