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
Not sure if this is a problem or if all browser can handle addresses like https://alu-schumacher.github.io/AUDITOR//edge/
Also not sure, why this happens for link tags but not for image ones. Maybe some sort of URL encoding going in in the zola build? This also occurs for the old version docs that have been generated on a local machine (e.g. view-source:https://alu-schumacher.github.io/AUDITOR/v0.3.1/)
The GITHUB_PAGES_URL already contains a trailing slash. Right now be build the base URL with ${{ env.GITHUB_PAGES_URL }}/${{ env.RELEASE_VERSION }}, which should be changed to ${{ env.GITHUB_PAGES_URL }}${{ env.RELEASE_VERSION }}
The text was updated successfully, but these errors were encountered:
While the versioned docs (see #553 ) generally seem to work, I found to minor issues:
/
) in link tags, while it has normal slashes for image tags (see the source code of https://alu-schumacher.github.io/AUDITOR//edge/):Not sure if this is a problem or if all browser can handle addresses like
https://alu-schumacher.github.io/AUDITOR//edge/
Also not sure, why this happens for link tags but not for image ones. Maybe some sort of URL encoding going in in the zola build? This also occurs for the old version docs that have been generated on a local machine (e.g. view-source:https://alu-schumacher.github.io/AUDITOR/v0.3.1/)
GITHUB_PAGES_URL
already contains a trailing slash. Right now be build the base URL with${{ env.GITHUB_PAGES_URL }}/${{ env.RELEASE_VERSION }}
, which should be changed to${{ env.GITHUB_PAGES_URL }}${{ env.RELEASE_VERSION }}
The text was updated successfully, but these errors were encountered: