-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
43 lines (43 loc) · 1.12 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
site_name: Gator Aid
repo_name: intuity/gator
repo_url: https://github.com/intuity/Gator
theme:
name: material
logo: assets/mascot_black.svg
palette:
scheme: slate
primary: amber
plugins:
- mkdocstrings:
handlers:
python:
options:
docstring_style: sphinx
markdown_extensions:
- attr_list
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
nav:
- Welcome: "index.md"
- "How Gator Works": "how_it_works.md"
- Schedulers: "schedulers.md"
- "YAML Specification":
- "!Job": "specs/job.md"
- "!JobArray": "specs/job_array.md"
- "!JobGroup": "specs/job_group.md"
- "!Cores": "specs/cores.md"
- "!License": "specs/license.md"
- "!Memory": "specs/memory.md"
- "Websocket API": "websocket_api.md"