-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathmake.jl
38 lines (32 loc) · 1.08 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
using Documenter, MLDatasets
## Commented out since gives warning
# DocMeta.setdocmeta!(MLDatasets, :DocTestSetup, :(using MLDatasets); recursive=true)
# Build documentation.
# ====================
makedocs(
modules = [MLDatasets],
doctest = true,
clean = false,
sitename = "MLDatasets.jl",
format = Documenter.HTML(
canonical = "https://juliadata.github.io/MLDatasets.jl/stable/",
assets = ["assets/favicon.ico"],
prettyurls = get(ENV, "CI", nothing) == "true",
collapselevel=3,
),
authors = "Hiroyuki Shindo, Christof Stocker, Carlo Lucibello",
pages = Any[
"Home" => "index.md",
"Datasets" => Any[
"Graphs" => "datasets/graphs.md",
"Miscellaneous" => "datasets/misc.md",
"Text" => "datasets/text.md",
"Vision" => "datasets/vision.md",
],
# "Creating Datasets" => Any["containers/overview.md"], # still experimental
"LICENSE.md",
],
strict = true,
checkdocs = :exports
)
deploydocs(repo = "github.com/JuliaML/MLDatasets.jl.git")