forked from RoboticExplorationLab/TrajectoryOptimization.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake.jl
36 lines (34 loc) · 973 Bytes
/
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
using Documenter
using TrajectoryOptimization
makedocs(
sitename = "TrajectoryOptimization",
format = Documenter.HTML(prettyurls = false),
pages = [
"Introduction" => "index.md",
"Getting Started" => [
"model.md",
"costfunctions.md",
"constraints.md",
"creating_problems.md"
],
"Interfaces" => [
"costfunction_interface.md",
"constraint_interface.md"
],
"API" => [
"cost_api.md",
"constraint_api.md",
"problem.md",
"rotations.md",
"dynamics.md",
"nlp.md"
],
"Examples" => "examples.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",
)