update: make.jl for docs

This commit is contained in:
Wataru Otsubo 2024-09-13 19:29:46 +09:00
parent 96239dd489
commit ea7e87f36f

View file

@ -1,8 +1,18 @@
using Documenter, PSBoardDataBase
DocMeta.setdocmeta!(PSBoardDataBase, :DocTestSetup, :(using PSBoardDataBase); recursive = true)
makedocs(
modules = [PSBoardDataBase],
authors = "Wataru Otsubo <wotsubo@icepp.s.u-tokyo.ac.jp>",
sitename = "PSBoard DataBase",
remotes = Dict(
".." => Remotes.GitLab("https://gitlab.cern.ch", "wotsubo", "PSBoardDataBase"),
format = Documenter.HTML(;
canonical = "https://wotsubo.web.cern.ch",
edit_link = "main",
assets = String[],
),
repo = Remotes.GitLab("https://gitlab.cern.ch", "wotsubo", "PSBoardDataBase"),
pages = [
"Home" => "index.md",
]
)