cristianvasquez / obsidian-prettify

A markdown prettifier for obsidian
GNU General Public License v3.0
129 stars 12 forks source link

Have options for formatting frontmatter #51

Open wiktoriavh opened 3 years ago

wiktoriavh commented 3 years ago

Currently, when I have frontmatter it will be prettified into this

---
aliases:
  - test
tags:
  - test
cssclass:
  - test
---

But instead I want it to be inside an array, the way I type it:

---
aliases: [test]
tags: [test]
cssclass: [test]
---

Would love to have that feature added!