- What's template syntax?
- Mustache-style `{{variable}}` substitution. Plus `{{#list}}...{{/list}}` for list iteration. Simple, widely understood, no escaping required.
- Can I include conditionals?
- Basic ones: `{{#if variable}}...{{/if}}`. For complex logic, process the data in code before templating rather than building logic into the template.
- Does it validate variable coverage?
- Yes — warns if the template has variables your data doesn't provide. Prevents 'Hello {{name}}!' sending literally to users when `name` is missing.
- Is this Jinja2 or Handlebars?
- Mustache-compatible subset. Works across Python (chevron, pystache), JS (Mustache.js), and most other languages. Portable templates.