-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yaml
68 lines (63 loc) · 1.52 KB
/
mkdocs.yaml
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
site_name: crosstab
repo_name: geocoug/crosstab
repo_url: https://github.com/geocoug/crosstab
theme:
name: material
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tooltips
- navigation.indexes
- navigation.sections
- search.highlight
- search.share
- search.suggest
- toc.follow
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue grey
accent: blue grey
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue grey
accent: blue grey
toggle:
icon: material/lightbulb
name: Switch to system preference
nav:
- Home: index.md
- API Reference: crosstab.md
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [.]
options:
members_order: source
separate_signature: true
merge_init_into_class: true
show_signature_annotations: true
signature_crossrefs: true
show_root_heading: true
show_source: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
- admonition
- tables
- markdown_include.include:
base_path: .