I know nothing about javascript. But using simple dataview query it’s possible to do that creating aliases.
- First you can create an aliases field in YAML frontmatter. E.g., for file
my-file-name:
aliases: my file name
- Using new plugin features you can create a table query removing the file name and create a table column with an expression able to transform the aliases in file links. Something like this:
```dataview
TABLE WITHOUT ID ("[[" + file.name + "|" + file.aliases + "]]") as YourColumnTitle, file.tags
FROM ""