pub fn template(tmpl: &str) -> TransformDef
Create a template-based transform definition
Template supports {{capture_name}} interpolation.
{{capture_name}}
let transform = template("{{var}}"); // For match: `x == true` with capture @var="x" // Result: `x`