I am using Hugo to host my blog via Obsidian.
It require front matter like this
---
title: fourth
tags:
- thumbnail
- secondone
---
I use templater to generate front matter.
when I use <% tp.file.tags %>
It fetches tags from the file like this :
tags : #abc #def
I want it like
tags:
- abc
- def
How do I do it ? Please help