-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmake.jl
51 lines (48 loc) · 1.27 KB
/
make.jl
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
using Documenter
using RobotDynamics
using FiniteDiff
using ForwardDiff
using StaticArrays
makedocs(
sitename = "RobotDynamics",
format = Documenter.HTML(prettyurls = false),
pages = [
"Introduction" => "index.md",
"Dynamics Models" => [
"continuous.md",
"discrete.md",
],
"Rotations" => [
# "liestate.md"
"rotationstate.md",
],
"Important Types" => [
"knotpoints.md",
"trajectories.md",
],
"Internal API" => [
"functionbase.md",
"scalarfunction.md",
"autodiff.md",
],
# "Getting Started" => [
# "models.md",
# "dynamics_evaluation.md"
# ],
# "Documentation" => [
# "discretization.md",
# "knotpoints.md",
# "liemodel.md",
# "rigidbody.md",
# "linearmodel.md",
# "finite_diff.md",
# "dynamics_api.md"
# ]
]
)
# Documenter can also automatically deploy documentation to gh-pages.
# See "Hosting Documentation" and deploydocs() in the Documenter manual
# for more information.
deploydocs(
repo = "github.com/RoboticExplorationLab/RobotDynamics.jl.git",
)