-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
103 lines (95 loc) · 2.99 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
site_name: GEMDAT
site_url: https://gemdat.readthedocs.io
repo_url: https://github.com/GEMDAT-repos/GEMDAT
repo_name: GitHub
nav:
- Home: index.md
- Getting started: getting_started.md
- Visualization: plotting.md
- Dashboard: dashboard.md
- Examples:
# - Index: notebooks/README.md
- Introduction: notebooks/introduction.ipynb
- Loading a CIF File: notebooks/cif_sites.ipynb
- Generate sites from trajectory: notebooks/volume_sites.ipynb
- Shape analysis: notebooks/shape_analysis.ipynb
- Jumps: notebooks/jumps.ipynb
- Pathways: notebooks/paths.ipynb
- Percolation: notebooks/percolation.ipynb
- Multiple paths: notebooks/multiple_paths.ipynb
- Orientation tracking: notebooks/orientations.ipynb
- Python API:
- gemdat: api/gemdat.md
- gemdat.collective: api/gemdat_collective.md
- gemdat.io: api/gemdat_io.md
- gemdat.plots: api/gemdat_plots.md
- gemdat.rdf: api/gemdat_rdf.md
- gemdat.metrics: api/gemdat_metrics.md
- gemdat.trajectory: api/gemdat_trajectory.md
- gemdat.transitions: api/gemdat_transitions.md
- gemdat.jumps: api/gemdat_jumps.md
- gemdat.utils: api/gemdat_utils.md
- gemdat.volume: api/gemdat_volume.md
- Contributing: CONTRIBUTING.md
- Code of Conduct: CODE_OF_CONDUCT.md
- 🔗 Source code: https://github.com/GEMDAT-repos/GEMDAT
- 🔗 Issues: https://github.com/GEMDAT-repos/GEMDAT/issues
theme:
name: material
primary: blue
accent: red
palette:
accent: indigo
extra_css:
- stylesheets/extra.css
markdown_extensions:
- admonition
- attr_list
- markdown_include.include:
base_path: docs
- pymdownx.extra
- pymdownx.arithmatex:
generic: true
extra_javascript:
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
plugins:
- search
- mkdocstrings:
# https://mkdocstrings.github.io/usage/
handlers:
python:
paths: [src]
import:
- https://docs.python.org/3/objects.inv
- https://numpy.org/doc/stable/objects.inv
- https://docs.scipy.org/doc/scipy/objects.inv
- https://pandas.pydata.org/docs/objects.inv
- https://matplotlib.org/stable/objects.inv
- https://pymatgen.org/objects.inv
- https://scikit-image.org/docs/stable/objects.inv
options:
docstring_style: numpy
docstring_options:
ignore_init_summary: yes
show_submodules: no
show_source: true
show_root_heading: false
show_root_full_path: false
docstring_section_style: list
members_order: alphabetical
merge_init_into_class: yes
filters: ["!^_"]
- mkdocs-jupyter:
include_source: True
include_requirejs: true # Fix plotly rendering: https://github.com/danielfrg/mkdocs-jupyter/issues/107
ignore:
- gendocs.py
- genvariables.py
- .ipynb_checkpoints/*
watch:
- src/
- docs/
- README.md
- CONTRIBUTING.md
- CODE_OF_CONDUCT.md