From ea7e87f36fe937dfcd4cfc6f0687bc6ffc0b8196 Mon Sep 17 00:00:00 2001 From: Wataru Otsubo Date: Fri, 13 Sep 2024 19:29:46 +0900 Subject: [PATCH] update: make.jl for docs --- docs/make.jl | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index a79915b..847aafd 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -1,8 +1,18 @@ using Documenter, PSBoardDataBase +DocMeta.setdocmeta!(PSBoardDataBase, :DocTestSetup, :(using PSBoardDataBase); recursive = true) + makedocs( + modules = [PSBoardDataBase], + authors = "Wataru Otsubo ", 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", + ] )