Obsidian:// Link jumping is no longer supported in mermaid

Description

Obsidian Link jumping is no longer supported in mermaid, This was supported in the past.

Steps to reproduce

New page input:
```mermaid
flowchart RL
A
click A href “obsidian://open?vault=Obsidian%20Sandbox&file=Start%20Here”
```
Nothing happens after clicking the A

Did you follow the troubleshooting guide? [Y/N]

Y

Expected result

Jump to page Start Here

Actual result

There is no jump

Environment

  • Operating system: windows 11

  • Obsidian version: 1.4.13. no custom CSS


Additional information

2 Likes

https link work. I think this may be due to the new security restrictions we put in place a while back

1 Like

The link (“obsidian://open?vault=KG&file=mermaid_test”) and the title (“This is a tooltip for a link”) are both not working :rofl:

flowchart LR;
    A-->B;
    click B "obsidian://open?vault=KG&file=mermaid_test" "This is a tooltip for a link"

It doesn’t help me, but you can use the following currently

flowchart LR 
A(First note) 
B(First note child one) 
C(First note child two) 
A --> B 
A --> C 
class A,B,C internal-link;