Schematices using EJS as template language.
template:
<%# This will not appear in the generated output %> // This will appear in the generated output const unescaped = '<%= "<" %>'; // < const escaped = '<%- "<"%>'; // < <% if(true) { %>const conditionalTest = true; <% } %> <% if(false) { %>const conditionalTest = false; <% } %>
output file:
// This will appear in the generated output const unescaped = '<'; // < const escaped = '<'; // < const conditionalTest = true;