PkgTemplates.jl/docs/make.jl

28 lines
695 B
Julia
Raw Normal View History

2017-08-10 17:13:01 +00:00
using Documenter, PkgTemplates
makedocs(
modules=[PkgTemplates],
format=:html,
pages=[
"Home" => "index.md",
2017-08-16 06:58:54 +00:00
"Package Generation" => "pages/package_generation.md",
"Plugins" => "pages/plugins.md",
"Licenses" => "pages/licenses.md",
2017-08-16 23:11:20 +00:00
"Index" => "pages/index.md"
2017-08-10 17:13:01 +00:00
],
repo="https://github.com/christopher-dG/PkgTemplates.jl/blob/{commit}{path}#L{line}",
sitename="PkgTemplates.jl",
authors="Invenia Technical Computing Corporation",
2017-08-11 22:18:09 +00:00
assets=[
"assets/invenia.css",
],
2017-08-10 17:13:01 +00:00
)
deploydocs(
repo="github.com/christopher-dG/PkgTemplates.jl.git",
target="build",
julia="0.6",
deps=nothing,
make=nothing,
)