Using Jinja2 v 3.0. Say I have this context:
h = template.render(content=c, md=metadata)
Suppose my c, which is a string, also has variable in it, like {{ md.title }}
, that I do want to be evaluated.
How can I do that? is there a recursive kind of call to the jinja render method?