-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
36 lines (30 loc) · 1.03 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
site_name: GLVis
site_url: http://glvis.org
docs_dir: 'src'
markdown_extensions:
- extra # allow markdown in <div markdown="1">
- fenced_code # GitHub style code blocks, e.g. ```python, see http://highlightjs.readthedocs.org/en/latest/css-classes-reference.html for a list of languages
- footnotes
- attr_list # Allow us to add link attributes
repo_url: https://github.com/glvis/glvis
remote_name: origin
nav:
- Home: index.md
- Features: features.md
- Documentation:
- '_News': news.md
- 'Building GLVis': building.md
- 'Options and Use': options-and-use.md
- 'Mesh Formats': mesh-formats.md
- 'Parallel Visualization': parallel-visualization.md
- 'Curvilinear VTK Meshes': curvilinear-vtk-meshes.md
- 'NURBS Meshes': nurbs.md
- 'About': about.md
- Gallery: gallery.md
- Download: download.md
theme:
name: mkdocs # required. Can be anything as long as custom_dir is set correctly below
custom_dir: template
extra:
include_next_prev: false # turn off next/previous buttons
google_analytics: ['UA-101697-4', 'glvis.org']