-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathmake.jl
43 lines (41 loc) · 1.3 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
using Javis
using Documenter
makedocs(;
modules = [Javis],
authors = "Ole Kröger <[email protected]> and contributors",
repo = "https://github.com/JuliaAnimators/Javis.jl/blob/{commit}{path}#L{line}",
sitename = "Javis.jl",
format = Documenter.HTML(;
prettyurls = get(ENV, "CI", "false") == "true",
canonical = "https://JuliaAnimators.github.io/Javis.jl",
assets = String[],
edit_branch = "main",
),
pages = [
"Home" => "index.md",
"Tutorials" => [
"tutorials.md",
"tutorials/tutorial_1.md",
"tutorials/tutorial_2.md",
"tutorials/tutorial_3.md",
"tutorials/tutorial_4.md",
"tutorials/tutorial_5.md",
"tutorials/tutorial_6.md",
"tutorials/tutorial_7.md",
"tutorials/tutorial_8.md",
"tutorials/tutorial_morphing.md",
"tutorials/tutorial_partialdraw.md",
],
"HowTo" => "howto.md",
"Workflows" => "workflows.md",
"Examples" => "examples.md",
"Mission" => "mission.md",
"References" => "references.md",
"Contributing" => "contributing.md",
],
)
deploydocs(;
repo = "github.com/JuliaAnimators/Javis.jl",
push_preview = true,
devbranch = "main",
)