-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmkdocs.yml
95 lines (88 loc) · 2.43 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
site_name: onshape-robotics-toolkit
repo_url: https://github.com/neurobionics/onshape-robotics-toolkit
site_url: https://neurobionics.github.io/onshape-robotics-toolkit
site_description: A python library to facilitate interaction with Onshape's REST API
site_author: Senthur Ayyappan
edit_uri: edit/main/docs/
repo_name: neurobionics/onshape-robotics-toolkit
copyright: Maintained by <a href="https://neurobionics.com">Senthur Ayyappan</a>.
nav:
- Overview: index.md
- Getting Started: getting-started.md
- Developing: developing.md
- Contributing: contributing.md
- Tutorials:
- Exporting to URDF: tutorials/export.md
- Editing a CAD assembly: tutorials/edit.md
- API Documentation:
- Models:
- Assembly: api/assembly.md
- Document: api/document.md
- Element: api/element.md
- Geometry: api/geometry.md
- Joint: api/joint.md
- Link: api/link.md
- Mass: api/mass.md
- Variable: api/variable.md
- Connect: api/connect.md
- Graph: api/graph.md
- Log: api/log.md
- Mesh: api/mesh.md
- Parse: api/parse.md
- Robot: api/robot.md
- Urdf: api/urdf.md
- Utilities: api/utilities.md
plugins:
- search
- mkdocstrings:
handlers:
python:
setup_commands:
- import sys
- sys.path.append('../')
theme:
name: material
highlightjs: true
hljs_languages:
- python
- yaml
- bash
- json
- markdown
feature:
tabs: true
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: deep orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: deep orange
toggle:
icon: material/brightness-4
name: Switch to light mode
icon:
repo: fontawesome/brands/github
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/neurobionics/onshape-robotics-toolkit
- icon: fontawesome/brands/python
link: https://pypi.org/project/onshape-robotics-toolkit
markdown_extensions:
- attr_list
- pymdownx.snippets
- pymdownx.highlight # For syntax highlighting
- pymdownx.superfences
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- def_list
- pymdownx.tasklist:
custom_checkbox: true