Files
JuliaFEM.jl/docs/make.jl
T

30 lines
1015 B
Julia
Raw Normal View History

using Documenter
using JuliaFEM
makedocs(
2026-05-09 16:30:24 +03:00
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,
2026-05-09 16:30:24 +03:00
doctest = false,
linkcheck = false,
2026-05-09 16:30:24 +03:00
warnonly = [:missing_docs, :cross_references],
)