-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
110 lines (100 loc) · 2.79 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# mkdocs.yml
site_name: "ColorTeller Package Documentation"
site_author: L Ma
site_description: "ColorTeller benchmarks your color palettes"
site_url: "https://kausalflow.github.io/colorteller-package"
repo_url: "https://github.com/kausalflow/colorteller-package"
edit_uri: "blob/main/docs/"
repo_name: "kausalflow/colorteller-package"
theme:
name: "material"
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
# Default values, taken from mkdocs_theme.yml
language: en
features:
# - navigation.instant
- navigation.sections
- navigation.tabs
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
primary: red
accent: red
toggle:
icon: material/toggle-switch
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
favicon: assets/logo.png
logo: assets/logo_badge.png
markdown_extensions:
- admonition
- pymdownx.emoji
- pymdownx.magiclink
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.tasklist
- toc:
permalink: "¤"
plugins:
- autorefs
- search
- mkdocstrings:
handlers:
python:
setup_commands:
- import sys
- sys.path.append("docs")
selection:
docstring_style: "restructured-text"
members: True
filters:
- "^_[^_]"
watch:
- colorteller
extra:
social:
- icon: fontawesome/solid/palette
link: https://colorteller.kausalflow.com
- icon: fontawesome/brands/github
link: https://github.com/kausalflow/colorteller-package
- icon: fontawesome/solid/seedling
link: http://kausalflow.com
nav:
- "Docs Home":
- "Overview": index.md
- "Usage": usage.md
- "Reading Results": results.md
- "Tutorials":
- "References": tutorials/references.md
- References:
- "Introduction": references/index.md
- "Data":
- "Introduction": references/data/index.md
- "data.dataset": references/data/dataset.md
- "Utils":
- "Introduction": references/utils/index.md
- "utils.benchmark": references/utils/benchmark.md
- "utils.chart": references/utils/chart.md
- "utils.cmd": references/utils/cmd.md
- "utils.color": references/utils/color.md
- "utils.hex": references/utils/hex.md
- "utils.sort": references/utils/sort.md
- "Commandline":
- "command": references/command.md
- "Teller":
- "teller": references/teller.md
- "Visualize":
- "visualize": references/visualize.md
- "Changelog": changelog.md
- "ColorTeller Website": https://colorteller.kausalflow.com