PkgTemplates.jl/test/fixtures/AllPlugins/docs/make.jl

17 lines
370 B
Julia
Raw Normal View History

2019-08-31 14:09:22 +00:00
using AllPlugins
using Documenter
2019-08-31 11:45:41 +00:00
2019-08-31 14:09:22 +00:00
makedocs(;
modules=[AllPlugins],
authors="tester",
repo="https://github.com/tester/AllPlugins.jl/blob/{commit}{path}#L{line}",
sitename="AllPlugins.jl",
format=Documenter.HTML(;
2019-11-01 02:41:22 +00:00
prettyurls=get(ENV, "CI", "false") == "true",
2019-08-31 14:09:22 +00:00
assets=String[],
),
pages=[
"Home" => "index.md",
],
)