forked from JuliaAstro/JuliaAstro.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make.jl
33 lines (30 loc) · 861 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
using Documenter
makedocs(;
authors = "Julia Astro",
repo = "https://github.com/juliaastro/juliaastro.github.io/blob/{commit}{path}#L{line}",
sitename = "JuliaAstro",
format = Documenter.HTML(;
prettyurls = get(ENV, "CI", "false") == "true",
canonical = "https://juliaastro.github.io/",
assets = String[],
),
pages = [
"Home" => "index.md",
"Ecosystem" => "ecosystem.md",
"Tutorials" => [
"tutorials/index.md",
"General" => [
"tutorials/jwst-image-scale-bar.md",
"tutorials/tabular-data.md",
"tutorials/curve-fit.md",
]
]
],
strict = true
)
deploydocs(;
repo = "github.com/JuliaAstro/JuliaAstro.github.io",
push_preview = true,
branch = "master",
devbranch = "source"
)