Minor documentation updates

This commit is contained in:
Chris de Graaf 2017-08-16 18:11:20 -05:00
parent 138e1489a9
commit 2b74813e1f
3 changed files with 3 additions and 5 deletions

View File

@ -25,7 +25,7 @@ julia> using PkgTemplates
julia> t = Template(; user="invenia")
julia> generate("MyPkg", t; force=true)
julia> generate("MyPkg", t)
INFO: Initialized git repo at /tmp/tmpvaHVki/MyPkg
INFO: Made initial empty commit
INFO: Set remote origin to https://github.com/invenia/MyPkg.jl

View File

@ -8,6 +8,7 @@ makedocs(
"Package Generation" => "pages/package_generation.md",
"Plugins" => "pages/plugins.md",
"Licenses" => "pages/licenses.md",
"Index" => "pages/index.md"
],
repo="https://github.com/christopher-dG/PkgTemplates.jl/blob/{commit}{path}#L{line}",
sitename="PkgTemplates.jl",

View File

@ -25,7 +25,7 @@ julia> using PkgTemplates
julia> t = Template(; user="invenia")
julia> generate("MyPkg", t; force=true)
julia> generate("MyPkg", t)
INFO: Initialized git repo at /tmp/tmpvaHVki/MyPkg
INFO: Made initial empty commit
INFO: Set remote origin to https://github.com/invenia/MyPkg.jl
@ -77,9 +77,6 @@ INFO: Finished
WARNING: Remember to push all created branches to your remote: git push --all
```
Information on each keyword as well as plugin types can be found in the
[documentation](https://invenia.github.io/PkgTemplates.jl/stable).
## Comparison to [PkgDev](https://github.com/JuliaLang/PkgDev.jl)
`PkgTemplates` is similar in functionality to `PkgDev`'s `generate` function.