Make Markdown generation deterministic and parser-safe.
1) Quote frontmatter/template variables
{{description}} in Markdown frontmatter, wrap the value in quotes to prevent Antigravity/CLI parsing from breaking on special character sequences (e.g., ` #, : `).Example:
---
description: "{{description}}"
---
2) Enforce the same Markdown lint/format rules
validate doesn’t produce large, unexpected diffs.Result: fewer parser-loading issues in templates and smaller, consistent diffs from formatting tooling.