New Properties and templater prompts and commands?

You can also write/apply the YAML dashes (---) through Templater like this :

Credits to Zachatoo :blush: : 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 %>
<%"---"%>
9 Likes