PkgTemplates.jl/docs/make.jl

22 lines
558 B
Julia
Raw Normal View History

2019-08-31 10:49:20 +00:00
using Documenter
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=[
"Home" => "user.md",
"Developer Guide" => "developer.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
)