-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
79 lines (73 loc) · 2.04 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
site_name: OMF
use_directory_urls: false
exclude_docs: |
/requirements.txt
/build.sh
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML
markdown_extensions:
- def_list
- mdx_math:
enable_dollar_delimiter: true
- callouts
- pymdownx.snippets
extra_css:
- stylesheets/extra.css
nav:
- 'index.md'
- 'start.md'
- 'changelog.md'
- 'Format': 'format.md'
- 'Parquet': 'parquet.md'
- 'JSON-Schema':
- 'schema_index.md'
- 'schema/Array.md'
- 'schema/Attribute.md'
- 'schema/AttributeData.md'
- 'schema/BlockModel.md'
- 'schema/Composite.md'
- 'schema/Element.md'
- 'schema/Geometry.md'
- 'schema/Grid2.md'
- 'schema/Grid3.md'
- 'schema/GridSurface.md'
- 'schema/LineSet.md'
- 'schema/Location.md'
- 'schema/NumberColormap.md'
- 'schema/Orient2.md'
- 'schema/Orient3.md'
- 'schema/PointSet.md'
- 'schema/Project.md'
- 'schema/SubblockMode.md'
- 'schema/Subblocks.md'
- 'schema/Surface.md'
- 'C':
- 'c/index.md'
- 'c/errors.md'
- 'c/metadata.md'
- 'c/arrays.md'
- 'c/images.md'
- 'c/project.md'
- 'c/element.md'
- 'Geometries':
- 'c/geometry/pointset.md'
- 'c/geometry/lineset.md'
- 'c/geometry/surface.md'
- 'c/geometry/gridsurface.md'
- 'c/geometry/composite.md'
- 'c/geometry/blockmodel.md'
- 'c/attribute.md'
- 'c/colormap.md'
- 'c/grids.md'
- 'c/reader.md'
- 'c/reader_iterators.md'
- 'c/writer.md'
- 'c/writer_iterators.md'
- 'c/omf1.md'
- 'Examples':
- 'c/examples/pyramid.md'
- 'c/examples/metadata.md'
- 'c/examples/geometries.md'
- 'c/examples/attributes.md'
- 'c/examples/textures.md'
- 'Rust': 'rust/omf/index.html'