-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
65 lines (58 loc) · 1.39 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
site_name: PhEval
theme:
name: material
palette:
- scheme: default
primary: indigo
toggle:
icon: material/weather-night
name: Night Mode
- scheme: slate
primary: indigo
toggle:
icon: material/weather-sunny
name: Day Mode
markdown_extensions:
- pymdownx.emoji
- pymdownx.tasklist
- pymdownx.mark
- pymdownx.tilde
- pymdownx.highlight
- mkdocs-click
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
extra_css:
- https://unpkg.com/mermaid@8.5.1/dist/mermaid.css
- mermaid.css
extra_javascript:
- https://unpkg.com/mermaid@8.5.1/dist/mermaid.min.js
plugins:
- search
- autorefs
- include_dir_to_nav
- mkdocstrings:
enable_inventory: true
watch:
- src
nav:
- "index.md"
- Pipeline:
- "exomiser_pipeline.md"
- "pipeline.md"
- About: "about.md"
- Contact Us: "contact.md"
- API Documentation: api/pheval/
- Resources for contributors:
- "developing_a_pheval_plugin.md"
- "contributing.md"
- "styleguide.md"
- "CODE_OF_CONDUCT.md"
- Plugins: "plugins.md"
- Executing a Benchmark: "executing_a_benchmark.md"
- "roadmap.md"
site_url: https://monarch-initiative.github.io/pheval/
repo_url: https://github.com/monarch-initiative/pheval
edit_uri: "edit/docs/docs/"