-
Notifications
You must be signed in to change notification settings - Fork 9
/
mkdocs.yml
61 lines (56 loc) · 1.42 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
site_name: convtools
theme:
name: material
# highlightjs: true
# hljs_languages:
# - python
custom_dir: docs/overrides
features:
- content.code.copy
extra:
analytics:
provider: google
property: G-Q41F2W9QLY
repo_name: westandskif/convtools
repo_url: https://github.com/westandskif/convtools
site_url: https://convtools.readthedocs.io/en/latest/
use_directory_urls: true
nav:
- Welcome: README.md
- Usage:
- Basics: basics.md
- Collections: collections.md
- Conditions and Pipes: conditions_n_pipes.md
- Group By and Aggregate: aggregations.md
- Joins: joins.md
- Dates: dates.md
- Mutations: mutations.md
- Exceptions: exceptions.md
- Window functions: window_funcs.md
- Contrib / Tables: contrib_tables.md
- Contrib / Fs: contrib_fs.md
- Benefits: benefits.md
- Changelog: CHANGELOG.md
- Breaking changes: BREAKING_CHANGES.md
- Contributors: contributors.md
- License: LICENSE.md
markdown_extensions:
- toc:
permalink: true
- tables
- markdown_include.include:
base_path: docs
- pymdownx.blocks.tab:
alternate_style: true
- pymdownx.blocks.admonition:
- pymdownx.highlight:
use_pygments: true
- pymdownx.inlinehilite:
- pymdownx.superfences:
- pymdownx.snippets:
base_path: .
dedent_subsections: true
- attr_list
exclude_docs: |
examples-md/*.md
performance-md/*.md