You can prevent Properties
to try and parse the YAML of the Templater’s template by escaping the opening and closing ---
using Templater’s syntax
For example:
<%"---"%>
// template goes here
<%"---"%>
It shouldn’t change a thing when you run the template as Templater will just write ---
where <%"---"%>
was used
(At least, that’s the result I’ve got while Properties
was in beta )