-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
95 lines (89 loc) · 2.33 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Project information
site_name: Tidy Tools User Guide
site_url: https://lucas-nelson-uiuc.github.io/tidy_tools/
repo_url: https://github.com/lucas-nelson-uiuc/tidy_tools
repo_name: tidy_tools
theme:
name: material
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
logo: _assets/logo_small.png
features:
- navigation.tracking
- navigation.instant
- navigation.tabs
- navigation.tabs.sticky
- navigation.footer
- navigation.indexes
- content.tabs.link
- content.code.copy
icon:
repo: fontawesome/brands/github
nav:
- User Guide:
- index.md
- user-guide/getting-started.md
- user-guide/installation.md
- Concepts:
- user-guide/concepts/declarative.md
- Modules:
- user-guide/modules/core.md
- user-guide/modules/dataframe.md
- user-guide/modules/models.md
- user-guide/modules/workflow.md
- API Documentation:
- api/api-reference.md
- Core:
- api/core/selector.md
- api/core/filter.md
- DataFrame:
- api/dataframe/context.md
- api/dataframe/dataframe.md
- api/dataframe/handler.md
- Functions:
- api/functions/reader.md
- api/functions/merge.md
- Model:
- api/model/model.md
- api/model/convert.md
- api/model/validate.md
- Workflow:
- api/workflow/compose.md
- api/workflow/pipeline.md
- Development:
- development/contribution.md
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [.]
options:
members_order: source
separate_signature: true
filters: ["!^_"]
docstring_style: numpy
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
show_signature_annotations: true
signature_crossrefs: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences