-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmake.jl
29 lines (27 loc) · 910 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
using AcuteML
using Documenter
makedocs(;
modules=[AcuteML],
authors="Amin Yahyaabadi",
repo="https://github.com/aminya/AcuteML.jl/blob/{commit}{path}#L{line}",
sitename="AcuteML.jl",
format=Documenter.HTML(;
prettyurls = prettyurls = get(ENV, "CI", nothing) == "true",
# canonical="https://aminya.github.io/AcuteML.jl",
# assets=String[],
),
pages=[
"Home" => "index.md",
"Supported Value Types" => "supportedValueTypes.md",
"Value Checking" => "valueChecking.md",
"Extra Contructors" => "extraConstructors.md",
"Custom Value Types" => "customValueTypes.md",
"Custom Contructors" => "customConstructors.md",
"DOM/XPath API" => "domxpath.md",
"Templating" => "templating.md",
"Syntax Reference" => "SyntaxReference.md"
],
)
deploydocs(;
repo="github.com/aminya/AcuteML.jl",
)