Skip to content

Commit

Permalink
make links work both locally and on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
seabbs committed Feb 29, 2024
1 parent a443269 commit 67a4d96
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion EpiAware/docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,8 @@ makedocs(; sitename = "EpiAware.jl",
clean = true, doctest = true, linkcheck = true,
warnonly = [:docs_block, :missing_docs],
modules = [EpiAware],
pages = pages)
pages = pages,
format = Documenter.HTML(
prettyurls = get(ENV, "CI", nothing) == "true"
)
)

0 comments on commit 67a4d96

Please sign in to comment.