-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
66 lines (60 loc) · 1.67 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
# Project information
site_name: ElementEmbeddings
site_url: https://wmd-group.github.io/ElementEmbeddings/
site_author: Anthony Onwuli
# Repository
repo_url: https://github.com/WMD-group/ElementEmbeddings
repo_name: "ElementEmbeddings"
edit_uri: ""
nav:
- Home: index.md
- About: about.md
- Getting Started: installation.md
- "Python package":
- "Core module": "python_api/core.md"
- "Composition module": "python_api/composition.md"
- "Plotter module": "python_api/plotter.md"
- "Utility module":
- "io": python_api/utils/io.md
- "Math": python_api/utils/math.md
- "Species": python_api/utils/species.md
- Tutorial:
- "Simple usage": tutorials.md
- "Core usage (notebook)": tutorial/usage.ipynb
- "Composition usage (notebook)": tutorial/composition.ipynb
- "Ionic Species (notebook)": tutorial/species.ipynb
- Embedding Schemes:
- "Element Embeddings": "embeddings/element.md"
- Species Embeddings: "embeddings/species.md"
- Contributing: contribution.md
- Issue Tracker: https://github.com/WMD-group/ElementEmbeddings/issues
# Configuration
theme:
name: material
custom_dir: docs/.overrides
features:
- navigation.instant
- navigation.tracking
- content.code.copy
# Customisation
extra:
version:
provider: mike
default: stable
plugins:
- mkdocstrings
- search
- autorefs
- mkdocs-jupyter:
include_source: true
execute: true
allow_errors: false
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- attr_list
- md_in_html
# Configuration