I attempted to use PkgTemplates to create a package, running the following:
t = Template(;
dir="~/code",
plugins=[
Git(; manifest=true, ssh=true),
Codecov(),
TravisCI(; x86=true),
Documenter{TravisCI}(),
],
)
t("Mypackage")
Creates a project directory “Mypackage”, which already has this partial structure:
Fig.1
Also when I go to the repo on github there are buttons:
Fig.2
Now I have added some types and methods and I need to update this existing documentation.
According to the Documenter tutorial, that means running:
makedocs(sitename="My Documentation")
But since the template is already done, I’m assuming the sitename
is not arbitrary.
How do I make sure sitename
matches stuff that PkgTemplates put in Fig.1 and Fig.2 so when I click on those buttons my actual docs show up?