mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-08-05 20:11:31 +00:00
2a3b11592f
docs/make.jl | 52 ++++++++++++++++++++++------------------------------ 1 file changed, 22 insertions(+), 30 deletions(-)
30 lines
1015 B
Julia
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],
|
|
)
|