-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmake.jl
More file actions
30 lines (27 loc) · 856 Bytes
/
make.jl
File metadata and controls
30 lines (27 loc) · 856 Bytes
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
using Documenter
using GraphMakie
using DistributedFactorGraphs
DFG.@usingDFG true
makedocs(;
modules = [DistributedFactorGraphs],
format = Documenter.HTML(),
sitename = "DistributedFactorGraphs.jl",
pages = Any[
"Home" => "index.md",
"Getting Started" => [
"DFG Data Structures" => "DataStructure.md",
"Building Graphs" => "BuildingGraphs.md",
"Using Graph Elements" => "GraphData.md",
"Drawing Graphs" => "DrawingGraphs.md",
"Quick API Reference" => "ref_api.md",
],
"Reference" => ["func_ref.md", "services_ref.md", "blob_ref.md"],
],
# warnonly=[:doctest],
# checkdocs=:none,
# html_prettyurls = !("local" in ARGS),
)
deploydocs(;
repo = "github.com/JuliaRobotics/DistributedFactorGraphs.jl.git",
target = "build",
)