Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I am unable to add hyperlinks to a mermaid flowchart within the wiki functionality of gitlab

I want to use my flowchart as a table of contents that also represents the progression of parallel events vaguely in chronological order and their relation to one another.

I know to create these charts using markdown. By adding the "click" line for the "B" node i can see my cursor change when hovering over the node as if it were a link but any attempt to select it doesn't work.

graph LR;
    A-->B;
    click B "http://www.github.com"

Is this a limitation of Gitlab itself?

like image 290
DED Avatar asked Mar 05 '19 03:03

DED


1 Answers

Update:

This is now supported since GitLab 12.1.

The given example works in GitLab Wiki pages.

graph LR;
    A-->B;
    click B "http://www.github.com"

Thanks, KargWare for pointing this out in the comments.


Yes, this is a limitation of GitLab. There is an open issue requesting the feature:
https://gitlab.com/gitlab-org/gitlab-ce/issues/50459

Hopefully, it will be implemented eventually.

like image 144
Thomas Kainrad Avatar answered Sep 28 '22 06:09

Thomas Kainrad