forked from rsalesc/rbx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
126 lines (126 loc) · 3.84 KB
/
mkdocs.yml
File metadata and controls
126 lines (126 loc) · 3.84 KB
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
site_name: rbx
site_description: A tool for creating and managing competitive programming problems
site_author: Roberto Sales
site_url: https://rbx.rsalesc.dev/
repo_url: https://github.com/rsalesc/rbx
repo_name: rsalesc/rbx
nav:
- "intro/overview.md"
- "intro/installation.md"
- "Cheatsheet": "setters/cheatsheet.md"
- "Walkthrough":
- "setters/first-steps.md"
- "Feature Guide":
- "Variables": "setters/variables.md"
- "Testset":
- "setters/testset/index.md"
- "Generators": "setters/testset/generators.md"
- "Stress testing": "setters/stress-testing.md"
- "Running":
- "setters/running/index.md"
- "Grading":
- "setters/grading/index.md"
- "Checkers": "setters/grading/checkers.md"
- "Interactors": "setters/grading/interactors.md"
- "Verification":
- "setters/verification/index.md"
- "Validators": "setters/verification/validators.md"
- "Unit tests": "setters/verification/unit-tests.md"
- "Stress testing": "setters/stress-testing.md"
- "Packaging":
- "setters/packaging/index.md"
- "BOCA": "setters/packaging/boca.md"
- "Polygon": "setters/packaging/polygon.md"
- "Presets":
- "setters/presets/index.md"
- "Reference":
- "Package":
- "setters/reference/package/index.md"
- "Schema": "setters/reference/package/schema.md"
- "Contest":
- "setters/reference/contest/index.md"
- "Schema": "setters/reference/contest/schema.md"
- "Environment":
- "setters/reference/environment/index.md"
- "Schema": "setters/reference/environment/schema.md"
# - "CLI": "setters/reference/cli.md"
- "Troubleshooting":
- "cpp-on-macos.md"
- "stack-limit.md"
theme:
name: material
custom_dir: docs/templates
logo: rbx_black_fit.png
palette:
primary: orange
font:
text: Source Sans Pro
code: Source Code Pro
icon:
repo: fontawesome/brands/github
features:
- content.code.copy
- content.code.annotate
- navigation.sections
- navigation.indexes
- navigation.path
- navigation.expand
- search.highlight
- search.suggest
- toc.follow
plugins:
- search
- macros
- termynal
- autorefs
- gen-files:
scripts:
- rbx/box/dump_schemas.py
- mkdocstrings:
handlers:
python:
options:
unwrap_annotated: true
extensions:
- griffe_fieldz
extra:
rbx: "[rbx](){:.rbx}"
rbxTeX: "[rbxTeX](){:.rbx}"
rbxtex: "[rbxTeX](){:.rbx}"
icpcformat: "[ICPC package format](https://icpc.io/problem-package-format/spec/legacy-icpc.html)"
codeforces: "[Codeforces](https://codeforces.com)"
polygon: "[Polygon](https://polygon.codeforces.com)"
boca: "[BOCA](https://github.com/cassiopc/boca)"
testlib: "[testlib](https://codeforces.com/testlib)"
jngen: "[jngen](https://github.com/ifsmirnov/jngen)"
YAML: "[YAML](https://yaml.org)"
repo: "[GitHub repository](https://github.com/rsalesc/rbx)"
regex:
name: "^[a-zA-Z0-9][a-zA-Z0-9\\-]{2,32}$"
tags:
accepted: '<span style="color: green">accepted</span>'
wrong_answer: '<span style="color: red">wrong answer</span>'
social:
- icon: fontawesome/brands/github
link: https://github.com/rsalesc/rbx
extra_css:
- extra.css
markdown_extensions:
- admonition
- attr_list
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- md_in_html
- pymdownx.tabbed:
alternate_style: true
- markdown_grid_tables
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- toc:
permalink: "#"