-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
mkdocs.yml
49 lines (46 loc) · 1.76 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
site_name: nphysics
pages:
- Home: index.md
- '<i class="fa fa-book"></i>  User Guide':
- 'Getting started': getting_started.md
- 'Rigid body simulation': rigid_body_simulations_with_contacts.md
- 'Joint constraints and multibodies': joint_constraints_and_multibodies.md
- 'Deformable bodies': deformable_bodies.md
- 'Contact models': contact_models.md
- 'Interaction handling and sensors': interaction_handling_and_sensors.md
- 'Continuous collision detection': continuous_collision_detection.md
- 'Performance tuning': performance_tuning.md
- 'The nphysics testbed': nphysics_testbed.md
- 'WASM compatibility': wasm_compatibility.md
# - 'FAQ': faq.md
- '<i class="fa fa-align-left"></i>  API Documentation':
- 'nphysics2d': rustdoc_nphysics2d.md
- 'nphysics3d': rustdoc_nphysics3d.md
- '<i class="fa fa-play"></i>  Demos':
- '2D demos': all_examples2.md
- '3D demos': all_examples3.md
- '<i class="fa fa-question-circle"></i>  About':
- 'Contributing': about.md
- 'Release notes': changelog.md
theme:
name: null
custom_dir: 'custom_flatly'
site_author: 'Sébastion Crozet'
site_favicon: img/favicon.ico
site_url: http://nphysics.org
# the third-party extension mdx_math.py comes with a setup.py script
# Thank you Dmitry Shachnev (https://github.com/mitya57/python-markdown-math)
markdown_extensions:
- extra
- mdx_math:
enable_dollar_delimiter: True #for use of inline $..$
- fenced_code
- codehilite:
use_pygments: False
- footnotes
- smarty
- admonition
- toc:
permalink: '§'
# Required to load the MathJax javascript for the mdx_math.py
extra_javascript: ['https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML']