-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
39 lines (36 loc) · 1.19 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
site_name: salva
pages:
- Home: index.md
# - '<i class="fa fa-book"></i>  User Guide':
# - 'Getting started': getting_started.md
- '<i class="fa fa-align-left"></i>  API Documentation':
- 'salva2d': rustdoc_salva2d.md
- 'salva3d': rustdoc_salva3d.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://salva.rs
# 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']