[BUG] Frontmatter example in documentation is wrong
bug
Example in the documentation for [template](https://danielorodriguez.com/obsidian-modal-form/templates/#example) should be fixed.
Currently:
```
{# frontmatter pick: title, tags #}
# {{title}}
Dear {{name}},
Thank you for your {{type}} submission about {{topic}}.
Best regards,
{{signature}}
```
but it should be
```
---
{# frontmatter pick: title, tags #}
---
# {{title}}
Dear {{name}},
Thank you for your {{type}} submission about {{topic}}.
Best regards,
{{signature}}
```
1 条评论