forked from RoboticExplorationLab/TrajectoryOptimization.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake_local.jl
42 lines (39 loc) · 1.14 KB
/
make_local.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
using Documenter
using Logging
using TrajectoryOptimization
# using RigidBodyDynamics
makedocs(
sitename = "TrajectoryOptimization",
format = Documenter.HTML(prettyurls = false),
pages = [
"Introduction" => "index.md",
# "Getting Started" => [
# "models.md",
# "costfunctions.md",
# "constraints.md",
# "creating_problems.md",
# "solving.md"
# ],
# "Interfaces" => [
# "costfunction_interface.md",
# "constraint_interface.md",
# "solver_interface.md"
# ],
# "Documentation" => [
# "model_types.md",
# "discretization.md",
# "cost_api.md",
# "constraint_api.md",
# "problem.md",
# "solvers.md",
# "rotations.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/TrajectoryOptimization.jl.git",
# devbranch = "master",
# )