PkgTemplates.jl/docs/make.jl

27 lines
738 B
Julia
Raw Normal View History

2017-08-10 17:13:01 +00:00
using Documenter, PkgTemplates
2017-08-18 21:08:48 +00:00
makedocs(;
2017-08-10 17:13:01 +00:00
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",
"Plugin Development" => "pages/plugin_development.md",
2017-08-16 06:58:54 +00:00
"Licenses" => "pages/licenses.md",
2017-08-18 04:06:45 +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",
2017-08-18 21:08:48 +00:00
authors="Chris de Graaf, Invenia Technical Computing Corporation",
2017-08-23 17:50:52 +00:00
assets=[],
2017-08-10 17:13:01 +00:00
)
2017-08-18 21:08:48 +00:00
deploydocs(;
repo="github.com/christopher-dG/PkgTemplates.jl",
2017-08-10 17:13:01 +00:00
target="build",
julia="0.6",
deps=nothing,
make=nothing,
)