-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmkdocs.yml
121 lines (121 loc) · 3.53 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
site_name: PolyFEM
site_url: "http://polyfem.github.io/polyfem/"
repo_name: "polyfem/polyfem"
repo_url: "https://github.com/polyfem/polyfem"
edit_uri: "../polyfem.github.io/edit/docs/docs/"
site_description: "A polyvalent C++ FEM library"
copyright: Copyright © 2018–2023 PolyFEM Group; <a href="https://github.com/polyfem/polyfem/blob/main/LICENSE">MIT License</a>
# strict: true
docs_dir: "docs"
remote_branch: "main"
theme:
name: material
custom_dir: 'docs/theme'
favicon: "img/xxx.ico"
icon:
logo: material/library
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: "light green"
accent: "green"
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: "green"
accent: "green"
toggle:
icon: material/weather-night
name: Switch to light mode
features:
- navigation.tabs
- navigation.expand
- search.suggest
- search.highlight
extra:
social:
- icon: fontawesome/brands/github
link: "https://github.com/polyfem"
extra_css:
- theme/extra.css
markdown_extensions:
- codehilite
- footnotes
- admonition
- toc:
permalink: true
- markdown.extensions.smarty
- markdown.extensions.toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.magiclink:
repo_url_shorthand: true
repo_url_shortener: true
user: polyfem
repo: polyfem
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.extra
- pymdownx.tabbed:
alternate_style: true
plugins:
# - mknotebooks:
# execute: true
# preamble: "docs/plot_to_md.py"
# timeout: -1
- git-revision-date
- search
- mkdocs-jupyter:
ignore_h1_titles: True
include_source: True
- include-markdown
extra_javascript:
- "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML"
- js/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
nav:
- General:
- Home: index.md
- License: license.md
- C++:
- Home: cxx_index.md
- JSON Input: json.md
- JSON Specification: json_defaults_and_spec.md
- Docs: https://polyfem.github.io/polyfem/
- Python:
- Home: python.md
- Jupyter Tutorial: python_examples.ipynb
- Docs: polyfempy_doc.md
- Tutorials:
- Getting Started: tutorials/getting_started.md
- IPC Quick Start Guide: tutorials/ipc_quick_start_guide/ipc_quick_start_guide.md
- Multi-Material: tutorials/multi-material/multi-material.md
- Screwing a Bolt into a Nut: tutorials/screw/screw.md
- Trajectory Optimization: tutorials/trajectory-optimization/trajectory-optimization.md
- Robotics:
- Pushing A Box: tutorials/sphere-pushing-box/sphere-pushing-box.md
- Sling-shot: tutorials/sling-shot/sling-shot.md
- Vision Proprioception: tutorials/vision-proprioception/vision-proprioception.md
- Technical Details:
- Formulations: details/formulations.md
- Problems: details/problems.md
- Time Integrators: details/time_integrators.md
- Solvers: details/solvers.md
- Contact: details/contact.md
- Miscellaneous: details/miscellaneous.md
- PolySolve: polysolve.md