xref: /libCEED/julia/LibCEED.jl/docs/make.jl (revision ec3da8bcb94d9f0073544b37b5081a06981a86f7)
1using Documenter, LibCEED, LinearAlgebra
2
3makedocs(sitename="LibCEED.jl Docs",
4         format=Documenter.HTML(prettyurls=false),
5         pages=[
6             "Home" => "index.md",
7             "Ceed Objects" => [
8                "Ceed.md",
9                "CeedVector.md",
10                "ElemRestriction.md",
11                "Basis.md",
12                "QFunction.md",
13                "Operator.md",
14             ],
15             "Utilities" => [
16                "Misc.md",
17                "Globals.md",
18                "Quadrature.md",
19             ],
20             "C.md",
21             "UserQFunctions.md",
22             "Examples.md",
23         ])
24
25deploydocs(
26    repo="github.com/CEED/libCEED-julia-docs.git",
27    devbranch="main",
28    push_preview=true,
29)
30