PkgTemplates.jl/docs/make.jl

29 lines
759 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",
"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",
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,
)