21 lines
500 B
Julia
21 lines
500 B
Julia
using Documenter
|
|
using PkgTemplates
|
|
|
|
makedocs(;
|
|
modules=[PkgTemplates],
|
|
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[],
|
|
),
|
|
pages=[
|
|
"Home" => "index.md",
|
|
],
|
|
)
|
|
|
|
deploydocs(;
|
|
repo="github.com/invenia/PkgTemplates.jl",
|
|
)
|