I basically used the second example from the PkgTemplates Readme:
t = Template(;
dir="~/code",
plugins=[
Git(; manifest=true, ssh=true),
Codecov(),
TravisCI(; x86=true),
Documenter{TravisCI}(),
],
)
This makes a Readme for the new package with a button like:
However, when I click this I get a 404 error, even though there are a bunch of docstrings in the various src files.
How do I make sure that when I push to the repo, it renders the docstrings in all the files and make this button link to them?