-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
45 lines (45 loc) · 1.28 KB
/
mkdocs.yml
File metadata and controls
45 lines (45 loc) · 1.28 KB
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
site_name: Biped Walking Controller
repo_url: https://github.com/rdesarz/biped-walking-controller.git
theme:
name: material
palette:
primary: blue grey
copyright: Copyright © 2025 Romain Desarzens
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: "numpy"
show_source: false
separate_signature: true
show_signature_annotations: false
members_order: source
filters: ["!^_"]
inherited_members: false
merge_init_into_class: true
markdown_extensions:
- pymdownx.arithmatex:
generic: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- attr_list
- md_in_html
- pymdownx.blocks.caption
extra_javascript:
- javascripts/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
extra_css:
- stylesheets/extra.css
nav:
- Home: index.md
- Getting started: getting_started.md
- Zero-Moment Point (ZMP) Preview Controller: preview_control.md
- Foot trajectory generation: foot.md
- Inverse kinematics: inverse_kinematics.md
- Integration in simulation: simulation.md