Is it possible to throw an error when a tag inside a template is missing? I could not find any issues mentioning this topic. For example, using the example in the readme as a reference, instead of: ```swift let template = try Template(string: "<{{#value}}Truthy{{/value}}>") // "<>" try template.render([:]) // missing value ``` do: ```swift let template = try Template(string: "<{{#value}}Truthy{{/value}}>") // Throw error: missing value try template.render([:]) // missing value ``` Thanks!