It would be nice to be able to post process the output of the `template` and `block` directives, e.g.: ```go {{ block "letter" . | GzipString | Base64EncodeString }} Dear {{.Name}}, {{if .Attended}}It was a pleasure to see you at the wedding. {{else}}It is a shame you couldn't make it to the wedding.{{end}} {{with .Gift}}Thank you for the lovely {{.}}. {{end}} Best wishes, Josie {{ end }} ``` ```go {{ define "letter" }} Dear {{.Name}}, {{if .Attended}}It was a pleasure to see you at the wedding. {{else}}It is a shame you couldn't make it to the wedding.{{end}} {{with .Gift}}Thank you for the lovely {{.}}. {{end}} Best wishes, Josie {{ end }} {{ template "letter" . | GzipString | Base64EncodeString }} ``` Regards.