-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yaml
103 lines (97 loc) · 2.52 KB
/
mkdocs.yaml
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
site_name: gapper API Reference
site_description: The API Reference for gapper module, a Python autograder generator for Gradescope.
repo_url: https://github.com/FlickerSoul/gapper
site_dir: site
docs_dir: docs
copyright: Copyright © 2023 Larry Zeng and Contributors
nav:
- Home: index.md
- Tutorials:
- Tutorials/Getting-Started.md
- Tutorials/Detailed-Usage.md
- Tutorials/gap_-Keywords.md
- Tutorials/Easy-Context.md
- Tutorials/Test-Result-(Proxy).md
- Tutorials/Upload-Autograder.md
- Tutorials/Various-Function-Protocols.md
- Examples:
- Examples/README.md
- API:
- API/problem.md
- API/problem_extras.md
- API/test_cases.md
- API/test_result.md
- API/useful_types.md
- API/pipeline_support.md
- API/test_case_wrapper.md
- API/result_synthesizer.md
- API/tester.md
- API/gradescope_data_types.md
- API/hook.md
- API/errors.md
- Contribute:
- Contributing/how_to_contribute.md
extra:
analytics:
provider: google
property: G-JEY0JHXDF4
social:
- icon: fontawesome/brands/github
link: https://github.com/FlickerSoul/gapper
- icon: fontawesome/brands/python
link: https://pypi.org/project/gapper/
- icon: fontawesome/brands/telegram
link: https://t.me/the_universe_observer
theme:
name: material
features:
- content.code.annotate
- content.code.copy
- navigation.top
- navigation.tabs
- navigation.indexes
- navigation.tabs.sticky
- navigation.footer
- search.highlight
- search.suggest
- toc.follow
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
extra_css:
- css/api-styling.css
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: sphinx
separate_signature: true
show_signature_annotations: true
heading_level: 3
- minify:
minify_html: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
use_pygments: true
- toc:
permalink: true
- pymdownx.blocks.details:
- pymdownx.superfences: