-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmkdocs.yml
102 lines (87 loc) · 2.07 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
site_name: Checker
site_description: Python CLI script to run build and run tests against students solutions
site_url: https://manytask.github.io/checker/
docs_dir: ./docs
site_dir: ./site
theme:
name: material
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: dark)"
scheme: default
toggle:
icon: material/lightbulb
name: Switch to dark mode
primary: pink
accent: purple
# Palette toggle for dark mode
- media: "(prefers-color-scheme: light)"
scheme: slate
toggle:
icon: material/lightbulb
name: Switch to light mode
primary: pink
accent: lime
features:
- navigation.tabs
- navigation.sections
- navigation.top
- search.suggest
- search.highlight
- content.tabs.link
- content.code.copy
- content.code.annotation
language: en
font:
text: Roboto
code: Roboto Mono
icon:
repo: fontawesome/brands/github
favicon: images/favicon.ico
logo: images/manytask-avatar-1024px.png
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: info
extra:
version:
provider: mike
repo_name: manytask/checker
repo_url: https://github.com/manytask/checker
nav:
- Overview: index.md
- Concepts: 0_concepts.md
- Setup and Usage:
- Getting Started: 1_getting_started.md
- Configuration: 2_configuration.md
- Plugins: 3_plugins.md
- Pipelines: 4_pipelines.md
- Usage: 5_usage.md
- Development: 6_development.md
- Changelog: 7_changelog.md
markdown_extensions:
- def_list
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
pygments_lang_class: true
- pymdownx.extra
- pymdownx.tabbed:
alternate_style: true
- mkdocs_click
plugins:
- mike:
alias_type: symlink
canonical_version: latest
- search
- include-markdown
- mkdocstrings:
default_handler: python
handlers:
python:
options:
heading_level: 4
# show_source: false
# exclude_private: true
- mermaid2