This repository has been archived by the owner on Aug 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
77 lines (71 loc) · 1.96 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
74
75
76
77
site_name: CRIPT Python SDK
repo_url: https://github.com/C-Accel-CRIPT/cript
repo_name: C-Accel-CRIPT/cript
theme:
name: material
palette:
primary: deep purple
accent: deep purple
icon:
repo: fontawesome/brands/github
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src]
selection:
docstring_style: sphinx
options:
show_bases: false
show_source: false
options:
show_source: false
nav:
- Home: index.md
- Quickstart: quickstart.md
- Tutorials:
- Synthesis: tutorials/synthesis.md
- Simulation: tutorials/simulation.md
- Nodes:
- Project: nodes/project.md
- Collection: nodes/collection.md
- Material: nodes/material.md
- File: nodes/file.md
- Experiment: nodes/experiment.md
- Inventory: nodes/inventory.md
- Process: nodes/process.md
- ComputationalProcess: nodes/computational_process.md
- Computation: nodes/computation.md
- Data: nodes/data.md
- Reference: nodes/reference.md
- Software: nodes/software.md
- User: nodes/user.md
- Group: nodes/group.md
- Subobjects:
- Property: subobjects/property.md
- Condition: subobjects/condition.md
- Identifier: subobjects/identifier.md
- Ingredient: subobjects/ingredient.md
- Quantity: subobjects/quantity.md
- Equipment: subobjects/equipment.md
- SoftwareConfiguration: subobjects/software_configuration.md
- Algorithm: subobjects/algorithm.md
- Parameter: subobjects/parameter.md
- Citation: subobjects/citation.md
- API: api.md
- Paginator: paginator.md
- Exceptions: exceptions.md
markdown_extensions:
- toc:
baselevel: 1
permalink: True
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences