forked from Algorithmic-Battle/algobattle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
139 lines (126 loc) · 3.01 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
site_name: Algobattle
site_description: Algobattle framework, an interactive, easy to use computer science lab course
repo_name: benezivas/algobattle
repo_url: https://github.com/Benezivas/algobattle
edit_uri: ""
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
members_order: "source"
show_root_heading: true
show_root_path: false
theme:
name: material
icon:
repo: fontawesome/brands/github
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: indigo
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: indigo
accent: amber
toggle:
icon: material/weather-night
name: Switch to light mode
features:
- navigation.instant
- navigation.tabs
- navigation.sections
- navigation.indexes
- navigation.top
- toc.follow
- search.suggest
- search.highlight
- search.share
- content.tabs.link
- content.code.annotate
- content.code.copy
language: en
font:
text: Roboto
code: monospace
markdown_extensions:
- toc:
permalink: true
- admonition
- def_list
- pymdownx.extra
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.details
- pymdownx.superfences
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.blocks.tab:
alternate_style: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.blocks.admonition:
types:
- note
- abstract
- info
- tip
- success
- question
- warning
- failure
- danger
- bug
- example
- quote
- new
- settings
- pymdownx.keys
- mdx_include:
base_path: docs/src
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
extra_css:
- css/termynal.css
- css/custom.css
extra_javascript:
- js/termynal.js
- js/custom.js
nav:
- Home: index.md
- Tutorial:
- tutorial/index.md
- tutorial/installation.md
- tutorial/getting_started.md
- tutorial/programs.md
- tutorial/match.md
- tutorial/summary.md
- Advanced Topics:
- advanced/index.md
- advanced/config.md
- advanced/battle_types.md
- advanced/docker.md
- advanced/problems.md
- Instructor's Corner:
- instructor/index.md
- instructor/teaching_english.md
- Creating Problems:
- instructor/problem/intro.md
- instructor/problem/problem_file.md
- instructor/problem/example.md
- instructor/problem/advanced.md
- instructor/problem/annotations.md
- instructor/problem/io.md
- API Reference:
- api/index.md
- api/battle.md
- api/problem.md
- api/util.md