Mercurial > repos > public > sbplib_julia
comparison docs/make.jl @ 1854:654a2b7e6824 tooling/benchmarks
Merge default
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Sat, 11 Jan 2025 10:19:47 +0100 |
parents | 2311f33b6bd3 |
children | 84e5ab97902d |
comparison
equal
deleted
inserted
replaced
1378:2b5480e2d4bf | 1854:654a2b7e6824 |
---|---|
1 using Documenter | 1 using Documenter |
2 using Sbplib | 2 using Diffinitive |
3 | 3 |
4 using Sbplib.DiffOps | 4 using Diffinitive.Grids |
5 using Sbplib.Grids | 5 using Diffinitive.LazyTensors |
6 using Sbplib.LazyTensors | 6 using Diffinitive.RegionIndices |
7 using Sbplib.RegionIndices | 7 using Diffinitive.SbpOperators |
8 using Sbplib.SbpOperators | |
9 using Sbplib.StaticDicts | |
10 | 8 |
11 sitename = "Sbplib.jl" | 9 sitename = "Diffinitive.jl" |
10 | |
11 remotes = nothing | |
12 edit_link = nothing | |
13 repolink = nothing | |
12 | 14 |
13 if "--prettyurls" ∈ ARGS | 15 if "--prettyurls" ∈ ARGS |
14 prettyurls = true | 16 prettyurls = true |
15 else | 17 else |
16 prettyurls = false | 18 prettyurls = false |
25 | 27 |
26 pages = [ | 28 pages = [ |
27 "Home" => "index.md", | 29 "Home" => "index.md", |
28 "operator_file_format.md", | 30 "operator_file_format.md", |
29 "grids_and_grid_functions.md", | 31 "grids_and_grid_functions.md", |
32 "matrix_and_tensor_representations.md", | |
30 "Submodules" => [ | 33 "Submodules" => [ |
31 "submodules/grids.md", | 34 "submodules/grids.md", |
32 "submodules/diff_ops.md", | |
33 "submodules/lazy_tensors.md", | 35 "submodules/lazy_tensors.md", |
34 "submodules/region_indices.md", | 36 "submodules/region_indices.md", |
35 "submodules/sbp_operators.md", | 37 "submodules/sbp_operators.md", |
36 "submodules/static_dicts.md", | |
37 ], | 38 ], |
38 "doc_index.md", | 39 "doc_index.md", |
39 ] | 40 ] |
40 # This ordering is not respected by @contents. See https://github.com/JuliaDocs/Documenter.jl/issues/936 | 41 # This ordering is not respected by @contents. See https://github.com/JuliaDocs/Documenter.jl/issues/936 |
41 | 42 |
42 format=Documenter.HTML(;prettyurls) | 43 format=Documenter.HTML(;prettyurls, edit_link, repolink) |
43 makedocs(;sitename, pages, format, build) | 44 |
45 makedocs(;sitename, pages, format, build, remotes) |