References:
Ideally, this would allow for HTML tags to be safely embedded within template strings.
>>> p.p(t"Bruno is {p.em("always")} hungry!")
<p>Bruno is <em>always</em> hungry</p>
In particular, note how with an f-string, the value would be escaped, resulting in incorrect output.
>>> p.p(f"Bruno is {p.em("always")} hungry!")
<p>Bruno is <em>always</em> hungry</p>