mirror of
https://gitlab.cern.ch/wotsubo/PSBoardDataBase.git
synced 2025-06-08 05:55:42 +09:00
18 lines
562 B
Julia
18 lines
562 B
Julia
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",
|
|
format = Documenter.HTML(;
|
|
canonical = "http://psboard-database.docs.cern.ch/",
|
|
edit_link = "main",
|
|
assets = String[],
|
|
),
|
|
repo = Remotes.GitLab("https://gitlab.cern.ch", "wotsubo", "PSBoardDataBase"),
|
|
pages = [
|
|
"Home" => "index.md",
|
|
]
|
|
)
|