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", + ] )