Show array tags in a column

What I’m trying to do

I structured frontmatter like below:
File:
Date:
Tags:
- tag1
- tag2

I want to have table displayed the Tags properties in a column, like

File Date Tags
#tag 1, #tag 2

Things I have tried

I have searched some threads but to no vail, the result just return “-”.

Update:
Following method can partially complete the task

table without ID  File, Date, join(tags, " ") as Tags
from "Repo"

But I struggle to add “#” to each element to make it a clickable tag.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.