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