Hi Selim,
thanks a lot for this great tool. Maybe i have missed it, is it possible to select how the YAML is written? So that one can select Block vs. Flow Yaml style?
YAML Block Style
This is the style I use for all Obsidian tags.
---
tags:
- toys
- gifts
---
# Heading
Content begins here...
YAML Flow Style
Alternative, compact style that is still valid YAML, but handling it is not a very high priority for these tools. This is particularly the case for the tools designed to have minimal dependencies, which don't have an actual YAML parser.
---
tags: [toys, gifts]
---
Best Regards
Hassel