-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
73 lines (69 loc) · 1.74 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
site_name: testcase-maker
repo_url: https://github.com/benwoo1110/testcase-maker
repo_name: benwoo1110/testcase-maker
nav:
- 'index.md'
- 'getting_started.md'
- 'advanced_usage.md'
- 'API Reference':
- 'API Reference/executor_manager.md'
- 'API Reference/executors.md'
- 'API Reference/generator.md'
- 'API Reference/resolver.md'
- 'API Reference/subtask.md'
- 'API Reference/values.md'
- 'Examples':
- 'Examples/sum_of_digits.md'
- 'Examples/split_the_string.md'
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: red
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: red
toggle:
icon: material/weather-sunny
name: Switch to light mode
plugins:
- search
- autorefs
- mkdocstrings:
handlers:
python:
selection:
inherited_members: true
filters:
- "!^_"
rendering:
members_order: source
show_bases: True
group_by_category: False
heading_level: 2
show_if_no_docstring: True
watch:
- testcase_maker
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.highlight:
linenums: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.keys
- pymdownx.saneheaders
- pymdownx.smartsymbols
- pymdownx.tabbed
- pymdownx.tasklist
- pymdownx.tilde
- toc:
permalink: true
toc_depth: 3