Sometimes you want to render multiple copies of a template, using different
sets of data variables. parse_template() returns an intermediate version
of the template, so you can render() repeatedly without re-parsing the
template syntax.
Usage
parse_template(.x, .config)
# S3 method for character
parse_template(.x, .config = default_config())
# S3 method for fs_path
parse_template(.x, .config = default_config())
The engine configuration. The default matches Jinja defaults,
but you can use jinjar_config() to customize things like syntax delimiters,
whitespace control, and loading auxiliary templates.
See Also
render() to render the final document using data variables.