-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
83 lines (78 loc) · 1.83 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
copyright: Copyright © 2020-2025 UNICEF
dev_addr: 127.0.0.1:8001
docs_dir: docs/src
edit_uri: 'blob/main/docs/'
repo_url: https://github.com/unicef/hope-dedup-engine
site_author: HOPE Team
site_description: "Documentation"
site_dir: ./~build/docs
site_name: "HOPE Deduplication Engine"
site_url: https://unicef.github.io/unicef/hope-dedup-engine/
strict: false
exclude_docs: |
_docs/*
_hooks/*
_includes/*
_scripts/*
~*
markdown_extensions:
- admonition
- pymdownx.magiclink
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
theme:
name: "material"
color_mode: auto
custom_dir: docs/_theme/overrides
favicon: img/favicon.ico
logo: img/logo.png
# highlightjs: true
# hljs_languages:
# - yaml
# - django
user_color_mode_toggle: true
features:
- content.action.edit
- content.code.annotate
- content.code.copy
- content.tooltips
- header.autohidex
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
extra:
version:
provider: mike
alias: true
palette:
# Palette toggle for light mode
- scheme: default
primary: light blue
media: "(prefers-color-scheme: light)"
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: light blue
media: "(prefers-color-scheme: dark)"
toggle:
icon: material/weather-night
name: Switch to light mode
plugins:
- mkdocstrings:
default_handler: python
- awesome-pages
- search
# - gen-files:
# scripts:
# - docs/_scripts/get_settings.py
watch:
- src/
hooks:
- docs/_hooks/hooks.py