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],
|
2018-12-14 21:45:03 +00:00
|
|
|
format=Documenter.HTML(),
|
2017-08-10 17:13:01 +00:00
|
|
|
pages=[
|
|
|
|
"Home" => "index.md",
|
2017-08-16 06:58:54 +00:00
|
|
|
"Package Generation" => "pages/package_generation.md",
|
|
|
|
"Plugins" => "pages/plugins.md",
|
2017-08-17 22:06:05 +00:00
|
|
|
"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
|
|
|
],
|
2017-08-25 04:17:17 +00:00
|
|
|
repo="https://github.com/invenia/PkgTemplates.jl/blob/{commit}{path}#L{line}",
|
2017-08-10 17:13:01 +00:00
|
|
|
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(;
|
2017-08-25 04:17:17 +00:00
|
|
|
repo="github.com/invenia/PkgTemplates.jl",
|
2017-08-10 17:13:01 +00:00
|
|
|
)
|