file.backlinks displays a full path backlink (e.g. Folder A/File A.md)
file.links displays just outgoing links (e.g. File B)
Proposed solution
Request 1
I would like to separate those links with “,”
For example, “[[A]], [[B]], [[C]]” instead of “[[A]] [[B]] [[C]]”. It would make it easier to see how many links there are
Even better if I can make a list and I can scroll in Base, for example
[[A]]
[[B]]
[[C]]
Request 2
I would like to switch from [[Folder A/File A.md]] to [[File A]] in case of file.backlinks
It would make the view cleaner and less clutter, especially files in a deep nested folder (e.g. Folder 1/Folder1.1/Folder1.1.1/File A.md)
The first 2 formulas work like a charm. However the last one whether .join() or .to String() will convert links into string, therefore unable to interact.
Yes … I can only guess that something changed since my previous post …
(I’m pretty sure I tested either .join() or .toString() and it was working fine “out of the box” at that moment )
A workaround, for comma separated list, which was shared on discord and keeps the links clickable could be:
This will only work as expected within the base though …
I mean, if you “copy the base to clipboard” (pasting it as a markdown table somewhere) the clickable comma separated list of “links” will become a list of paths with extra commas in between the values…