-
Bug
-
Resolution: Fixed
-
Low
-
3.1.3
The link markdown creates an extra slash in the URL if just an anchor is used. This causes the anchor link not to jump to the appropriate anchor on the page until it's clicked a second time. The behavior is also different from how Bitbucket markdown creates the link.
Stash
[connect](#connect)
Produces:
http://SERVER:7990/projects/PROJ/repos/REPO/browse/#connect
The resulting link should be:
http://SERVER:7990/projects/PROJ/repos/REPO/browse#connect
Bitbucket
[connect](#connect)
Produces:
https://bitbucket.org/USERNAME/REPO/overview#connect
Workaround
[connect](../browse#connect)
This was fixed with the changes for
BSERV-7260for Stash 3.11+.