-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmake.jl
33 lines (31 loc) · 1.17 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
using Documenter, DataAugmentation
makedocs(;
modules = [DataAugmentation],
sitename="DataAugmentation.jl",
pages = [
"index.md",
"Quickstart" => "quickstart.md",
"Transformations" => "transformations.md",
"Build your transformations" =>[
"Item Interface" => "iteminterface.md",
"Transform Interface" => "tfminterface.md",
"Projective Interface" => [
"Intro" => "projective/intro.md",
"Data" => "projective/data.md",
"Gallery" => "projective/gallery.md",
],
],
"Misc" =>[
"Buffering" => "buffering.md",
"Preprocessing" => "preprocessing.md",
"References" => "ref.md"
],
],
warnonly = [:example_block, :missing_docs, :cross_references],
format = Documenter.HTML(canonical = "https://fluxml.ai/DataAugmentation.jl/stable/",
assets = ["assets/flux.css"],
prettyurls = get(ENV, "CI", nothing) == "true")
)
deploydocs(repo = "github.com/FluxML/DataAugmentation.jl.git",
target = "build",
push_preview = true)