Frequently asked questions
If your question isn’t answered here, please start a discussion or create an issue.
Troubleshooting
This section addresses common issues and their solutions.
My web host doesn’t like “/foo” URLs. They want “/foo/” URLs.
By default, doc2go generates relative links in the form:
<a href="../path/to/dst">...</a>
If your web host prefers directories to have a trailing slash,
run doc2go with -rel-link-style=directory
.
doc2go -rel-link-style=directory ./...
This will generate:
<a href="../path/to/dst/">...</a>
Last modified February 26, 2024: Upgrade to latest Hugo (#214) (0f851c2)