-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
31 lines (27 loc) · 844 Bytes
/
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
site_name: Voromesh
site_description: "Bounded Voronoi diagrams."
theme:
name: "material"
palette:
primary: "cyan"
accent: "grey"
plugins:
- search
- mkdocstrings:
default_handler: python
- mkdocs-jupyter:
execute: true
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
nav:
- "Start": index.md
- "Bounded Voronoi diagram": helloworld.ipynb
- "Extrusion of a surface mesh": structured.ipynb
- "Voronoi mesh from GMSH mesh (Part 1)": mesh1.ipynb
- "Mapping elevation data to Voronoi mesh (Part 2)": mesh2.ipynb
- "A mesh for TOUGH3 (Part 1)": tough1.ipynb
- "Mesh properties for TOUGH3 (Part 2)": tough2.ipynb
- "API for class Voronoi": api_voronoi.md
- "API of module geo": api_geo.md
- "API of module tough3": api_tough3.md