Mercurial > repos > public > sbplib_julia
comparison docs/make.jl @ 2057:8a2a0d678d6f feature/lazy_tensors/pretty_printing
Merge default
| author | Jonatan Werpers <jonatan@werpers.com> |
|---|---|
| date | Tue, 10 Feb 2026 22:41:19 +0100 |
| parents | 3694f11075c5 |
| children |
comparison
equal
deleted
inserted
replaced
| 1110:c0bff9f6e0fb | 2057:8a2a0d678d6f |
|---|---|
| 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 |
| 24 end | 26 end |
| 25 | 27 |
| 26 pages = [ | 28 pages = [ |
| 27 "Home" => "index.md", | 29 "Home" => "index.md", |
| 28 "operator_file_format.md", | 30 "operator_file_format.md", |
| 31 "grids_and_grid_functions.md", | |
| 32 "matrix_and_tensor_representations.md", | |
| 33 "manifolds_charts_atlases.md", | |
| 29 "Submodules" => [ | 34 "Submodules" => [ |
| 30 "submodules/grids.md", | 35 "submodules/grids.md", |
| 31 "submodules/diff_ops.md", | |
| 32 "submodules/lazy_tensors.md", | 36 "submodules/lazy_tensors.md", |
| 33 "submodules/region_indices.md", | 37 "submodules/region_indices.md", |
| 34 "submodules/sbp_operators.md", | 38 "submodules/sbp_operators.md", |
| 35 "submodules/static_dicts.md", | |
| 36 ], | 39 ], |
| 37 "doc_index.md", | 40 "doc_index.md", |
| 38 ] | 41 ] |
| 39 # This ordering is not respected by @contents. See https://github.com/JuliaDocs/Documenter.jl/issues/936 | 42 # This ordering is not respected by @contents. See https://github.com/JuliaDocs/Documenter.jl/issues/936 |
| 40 | 43 |
| 41 format=Documenter.HTML(;prettyurls) | 44 format=Documenter.HTML(;prettyurls, edit_link, repolink) |
| 42 makedocs(;sitename, pages, format, build) | 45 |
| 46 makedocs(;sitename, pages, format, build, remotes) |
