-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmkdocs.yml
52 lines (49 loc) · 1.74 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
site_name: GMDS
repo_url: https://github.com/LIHPC-Computational-Geometry/gmds
repo_name: gmds/gmds
docs_dir: docs/mkdocs/
markdown_extensions:
- tables
- toc
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
theme:
name: material
features:
- navigation.top
nav:
- Home: 'index.md'
- 'User Guide':
- 'How to use gmds': 'user-guide/users_doc.md'
- 'Core modules':
- 'cad ': 'user-guide/cad.md'
- 'cadfac ': 'user-guide/cadfac.md'
- 'ig': 'user-guide/ig.md'
- 'igalgo ': 'user-guide/igalgo.md'
- 'io ': 'user-guide/io.md'
- 'quality ': 'user-guide/quality.md'
- 'math ': 'user-guide/math.md'
- 'smoothy': 'user-guide/smoothy.md'
- 'utils': 'user-guide/utils.md'
- 'Optional modules':
- 'Blocking': 'user-guide/blocking.md'
- 'Elg3D': 'user-guide/elg3d.md'
- 'elgmorphing': 'user-guide/elgmorphing.md'
- 'Frame': 'user-guide/frame.md'
- 'Frame3d': 'user-guide/frame3d.md'
- 'GeodHoneyComb': 'user-guide/geodhoneycomb.md'
- 'HybridMeshAdapt': 'user-guide/hybridmeshadapt.md'
- 'kmds': 'user-guide/kmds.md'
- 'padding': 'user-guide/padding.md'
- 'polyblock': 'user-guide/polyblock.md'
- 'sheet': 'user-guide/sheet.md'
- 'SingGraphBuild': 'user-guide/singgraphbuild.md'
- 'Developer Guide':
- 'How to develop a gmds module': 'dev-guide/developers_doc.md'
- 'Test-driven development': 'dev-guide/unit_test.md'
- 'Python binding': 'python-binding/pygmds.md'