You can also write/apply the YAML dashes (---
) through Templater like this :
Credits to Zachatoo : Escaping frontmatter in a template.
Edit: Thinking about this, you could probably also write your template :
Like this :
<%*
let tag = await tp.system.prompt("Which tag?");
let date = tp.date.now('YYYY-MM-DD');
_%>
<%"---"%>
tags: <% tag %>
date: <% date %>
<%"---"%>