You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When generating a page with gopages -internal -base "https://my-domain/docs/"
the links to the source code (e.g. of an func or Type) are broken since that absolute base url is prepended with a ./ in the generated href like this <a href="./https://my-domain/docs/src/pkg/foo/bar.go.html#L42">Foo</a>
Expected:
a href without relative prefix ./ like this: <a href="https://my-domain/docs/src/pkg/foo/bar.go.html#L42">Foo</a>
The text was updated successfully, but these errors were encountered:
When generating a page with
gopages -internal -base "https://my-domain/docs/"
the links to the source code (e.g. of an func or Type) are broken since that absolute base url is prepended with a
./
in the generated href like this<a href="./https://my-domain/docs/src/pkg/foo/bar.go.html#L42">Foo</a>
Expected:
a href without relative prefix
./
like this:<a href="https://my-domain/docs/src/pkg/foo/bar.go.html#L42">Foo</a>
The text was updated successfully, but these errors were encountered: