-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
64 lines (59 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
site_name: Splinkclickhouse Documentation
site_url: https://adbond.github.io/splinkclickhouse
site_description: Documentation site for splinkclickhouse, the python package for powering the data-linking package Splink with the OLAP SQL engine Clickhouse
repo_name: splinkclickhouse
repo_url: https://github.com/ADBond/splinkclickhouse
edit_uri: blob/main/docs/
nav:
- Home: index.md
- Quickstart: quickstart.md
- Engines:
- Clickhouse server: engines/clickhouse_server.md
- chdb: engines/chdb.md
- Advanced usage: advanced.md
- API:
- Home: api/index.md
- Comparison and Comparison Level Library: api/libraries.md
- DatabaseAPI: api/database_api.md
- Contributing: contributing.md
- Version history: CHANGELOG.md
hooks:
- docs/hooks/hooks.py
exclude_docs: "hooks/*"
theme:
name: "material"
palette:
- scheme: default
primary: green
accent: deep orange
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- scheme: slate
primary: green
accent: amber
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
features:
- content.code.copy
- content.code.select
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
heading_level: 3
show_root_toc_entry: false
show_bases: false
merge_init_into_class: true
show_source: false