You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
beefblup/docs/make.jl

27 lines
752 B
Julia

using BeefBLUP
using Documenter
DocMeta.setdocmeta!(BeefBLUP, :DocTestSetup, :(using BeefBLUP); recursive=true)
makedocs(;
modules=[BeefBLUP],
authors="Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>",
repo="https://github.com/MillironX/beefblup/blob/{commit}{path}#{line}",
sitename="beefblup",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://millironx.com/beefblup",
assets=String[],
),
pages=[
"Home" => "index.md",
"How to Calculate EPDs" => "how-to-calculate-epds.md",
"CLI Reference (WIP)" => "beefblup-cli.md"
],
)
deploydocs(;
repo="github.com/MillironX/beefblup",
devbranch="develop",
)