-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathmake.jl
More file actions
20 lines (17 loc) · 807 Bytes
/
make.jl
File metadata and controls
20 lines (17 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using Documenter
using Random
using TensorKit, TensorKitSectors
pages = ["Home" => "index.md",
"Manual" => ["man/intro.md", "man/tutorial.md", "man/categories.md",
"man/spaces.md", "man/sectors.md", "man/tensors.md"],
"Library" => ["lib/sectors.md", "lib/spaces.md", "lib/tensors.md"],
"Index" => ["index/index.md"]]
makedocs(; modules=[TensorKit, TensorKitSectors],
sitename="TensorKit.jl",
authors="Jutho Haegeman",
warnonly=[:missing_docs, :cross_references],
format=Documenter.HTML(; prettyurls=true, mathengine=MathJax(),
assets=["assets/custom.css"]),
pages=pages,
pagesonly=true)
deploydocs(; repo="github.com/QuantumKitHub/TensorKit.jl.git", push_preview=true)