Hi Kani,
I have been doing something similar to achieve rendered images bound to links. This method still has some limitations when using Obsidian on a mobile device that I have yet to overcome but the approach works well for Obsidian desktop (tested on OSX, untested on Windows).
The solution is to use only markdown links not Wiki links or combinations of both. The correct syntax is :
"[]( {linked-note-name} )"
- Text must be double quoted in order for dataview to parse.
- Image file must be a fully qualified path, relative paths won’t work.
- Any spaces in pathnames must be replaced with ‘%20’
- The note to link can be just named or referenced relatively. If you use fully qualified file paths here then the file opens in the default application associated with .md files - which for me opens vscode!
- Web Images can be used instead of local image files by quoting the web url to the image instead of the fully qualified local path.
Using your example the syntax would be :
"[](Name of the Note)"
It would be helpful if anyone can offer any insight as to why the embedded markdown link has to be fully qualified whereas the outer markdown link can be relatively addressed?