-
-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathmake.jl
More file actions
23 lines (19 loc) · 791 Bytes
/
make.jl
File metadata and controls
23 lines (19 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using SpecialFunctions, Documenter
using DocumenterCitations
# `using SpecialFunctions` for all doctests
DocMeta.setdocmeta!(SpecialFunctions, :DocTestSetup, :(using SpecialFunctions); recursive=true)
bib = CitationBibliography(
joinpath(@__DIR__, "src", "refs.bib");
style = :authoryear,
)
makedocs(modules=[SpecialFunctions],
sitename="SpecialFunctions.jl",
authors="Jeff Bezanson, Stefan Karpinski, Viral B. Shah, et al.",
format = Documenter.HTML(; assets = String[]),
pages=["Home" => "index.md",
"Overview" => "functions_overview.md",
"Reference" => "functions_list.md"],
plugins=[bib],
checkdocs=:exports,
)
deploydocs(repo="github.com/JuliaMath/SpecialFunctions.jl.git")