2019-09-18 14:22:04 +00:00
|
|
|
using Documenter: Documenter, makedocs, deploydocs
|
2019-09-01 14:03:19 +00:00
|
|
|
using PkgTemplates: PkgTemplates
|
2017-08-10 17:13:01 +00:00
|
|
|
|
2017-08-18 21:08:48 +00:00
|
|
|
makedocs(;
|
2017-08-10 17:13:01 +00:00
|
|
|
modules=[PkgTemplates],
|
2019-08-31 10:49:20 +00:00
|
|
|
authors="Chris de Graaf, Invenia Technical Computing Corporation",
|
|
|
|
repo="https://github.com/invenia/PkgTemplates.jl/blob/{commit}{path}#L{line}",
|
|
|
|
sitename="PkgTemplates.jl",
|
|
|
|
format=Documenter.HTML(;
|
|
|
|
canonical="https://invenia.github.io/PkgTemplates.jl",
|
|
|
|
assets=String[],
|
|
|
|
),
|
2017-08-10 17:13:01 +00:00
|
|
|
pages=[
|
2019-09-18 14:22:04 +00:00
|
|
|
"Home" => "index.md",
|
|
|
|
"User Guide" => "user.md",
|
2019-09-01 14:03:19 +00:00
|
|
|
"Developer Guide" => "developer.md",
|
2019-09-25 14:56:00 +00:00
|
|
|
"Migrating To PkgTemplates 0.7+" => "migrating.md",
|
2017-08-10 17:13:01 +00:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2017-08-18 21:08:48 +00:00
|
|
|
deploydocs(;
|
2017-08-25 04:17:17 +00:00
|
|
|
repo="github.com/invenia/PkgTemplates.jl",
|
2017-08-10 17:13:01 +00:00
|
|
|
)
|