PkgTemplates.jl/test/fixtures/WackyOptions/docs/make.jl
2019-11-01 09:41:22 +07:00

22 lines
484 B
Julia

using WackyOptions
using Documenter
makedocs(;
modules=[WackyOptions],
authors="tester",
repo="https://github.com/tester/WackyOptions.jl/blob/{commit}{path}#L{line}",
sitename="WackyOptions.jl",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="http://example.com",
assets=[
"assets/static.txt",
],
),
pages=[
"Home" => "index.md",
],
bar="baz",
foo="bar",
)