forked from calliope-project/euro-calliope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yaml
45 lines (44 loc) · 1.32 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
site_name: Euro-Calliope
nav:
- Home: index.md
- Access:
- Use pre-built models: model/pre-built.md
- Build models yourself: workflow/build.md
- Build on a cluster: workflow/build-remote.md
- Model:
- Overview: model/overview.md
- Customisation: model/customisation.md
- Workflow:
- Overview: workflow/overview.md
- Customisation: workflow/customisation.md
- Parameters: workflow/schema.md
- Troubleshooting: workflow/troubleshooting.md
- About:
- Release notes: CHANGELOG.md
- References: about/references.md
- Citation: about/citation.md
theme: readthedocs
repo_url: https://github.com/calliope-project/euro-calliope/
edit_uri: edit/develop/docs/
site_dir: build/docs
markdown_extensions:
- admonition
- attr_list
- pymdownx.details
- pymdownx.tabbed
- toc:
permalink: "#"
plugins:
- search
- dag:
path_to_snakefile: ./Snakefile
path_to_src_dir: ./build/.docs
path_to_png_relative_to_site: ./img/dag.png
- schema:
path_to_schema: ./config/schema.yaml
path_to_src_dir: ./build/.docs
path_to_md_relative_to_site: ./workflow/schema.md
- add-file:
path_to_file: ./CHANGELOG.md
path_to_src_dir: .
extra_css: [./css/extras.css]