Files
JuliaFEM.jl/docs/make.jl
T
Jukka Aho 2a3b11592f refactor(docs): update make.jl
docs/make.jl | 52 ++++++++++++++++++++++------------------------------  1 file changed, 22 insertions(+), 30 deletions(-)
2026-05-09 16:30:24 +03:00

30 lines
1015 B
Julia

using Documenter
using JuliaFEM
makedocs(
sitename = "JuliaFEM.jl",
authors = "JuliaFEM Team",
modules = [JuliaFEM],
format = Documenter.HTML(;
prettyurls = get(ENV, "CI", nothing) == "true",
size_threshold = nothing,
size_threshold_warn = nothing,
),
pages = [
"Home" => "index.md",
"Elements and multiphysics" => "elements_multiphysics_teaser.md",
"Thermo-elastic walkthrough" => "thermo_elastic_walkthrough.md",
"Choosing an assembler" => "assembler_choice.md",
"Legacy module" => "legacy.md",
"Developer" => [
"Architecture layers" => "developer/architecture_layers.md",
"Repository layout" => "repository_layout.md",
],
"API Reference" => "api.md",
],
checkdocs = :none,
doctest = false,
linkcheck = false,
warnonly = [:missing_docs, :cross_references],
)