-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
62 lines (55 loc) · 1.31 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
site_name: VOXEL COMPRESSION
use_directory_urls: false
docs_dir: src
site_dir: docs
theme:
name: readthedocs
highlightjs: true
hljs_style: darcula
hljs_languages: [asm, ebnf, cpp, rust, python]
custom_dir: custom_theme
markdown_extensions:
- toc:
toc_depth: 2
- admonition
- footnotes
- mdx_math:
enable_dollar_delimiter: true
nav:
- index.md
- introduction.md
- Basics:
- properties.md
- statistical_tests.md
- Related Work:
- related/overview.md
- related/voxel_formats.md
- related/literature.md
- Geometry Encoding:
- uncompressed.md
- rle/rle.md
- rle/space_filling_curves.md
- rle/hilbert_curves.md
- svo/svo.md
- svo/construction.md
- svo/optimization.md
- dag/dag.md
- cuboid_extraction.md
- Attribute Encoding:
- attribute_compression.md
- Implementation:
- flvc/flvc.md
- flvc/flvc_optimizations.md
- flvc/full_example.md
- flvc/results.md
- Auxiliary File Formats:
- file_formats/vl32.md
- file_formats/vlascii.md
- file_formats/structlang.md
extra_css:
- css/darcula.css
- css/extra.css
extra_javascript:
- 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS_HTML'
- js/mathjax_config.js
- js/extra.js