-
Notifications
You must be signed in to change notification settings - Fork 63
/
mkdocs.yml
70 lines (70 loc) · 1.77 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
site_name: igl
site_url: 'https://libigl.github.io/'
repo_name: 'libigl-python-bindings'
repo_url: 'https://github.com/libigl/libigl-python-bindings'
site_description: "Simple Python geometry processing library"
# strict: true
docs_dir: 'tutorial'
edit_uri: 'edit/master/tutorial/'
remote_branch: 'gh-pages'
theme:
name: material
favicon: 'favicon.ico'
icon: ''
palette:
primary: 'light blue'
accent: 'blue'
extra:
social:
- icon: fontawesome/brands/github-alt
link: 'https://github.com/libigl/libigl-python-bindings'
markdown_extensions:
- codehilite
- footnotes
- admonition
- toc:
permalink: true
- markdown.extensions.smarty
- markdown.extensions.toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.magiclink:
repo_url_shorthand: true
repo_url_shortener: true
user: libigl-python-bindings
repo: libigl-python-bindings
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- mknotebooks:
execute: true
preamble: "tutorial/plot_to_md.py"
timeout: -1
- exclude:
glob:
- data/*
- "tutorials.ipynb"
extra_javascript:
- 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML'
nav:
- Home: index.md
- Tutorial:
- Chapter 0: tut-chapter0.ipynb
- Chapter 1: tut-chapter1.ipynb
- Chapter 2: tut-chapter2.ipynb
- Chapter 3: tut-chapter3.ipynb
- Chapter 4: tut-chapter4.ipynb
- Chapter 5: tut-chapter5.ipynb
- Chapter 6: tut-chapter6.ipynb
- Docs: igl_docs.md
- Contributing: contributing.md