▲ | zahlman 8 days ago | |||||||
> I can easily end up unsafely processed. No, that isn't how it works. The unprocessed version is not a `str` instance and doesn't implement `__str__`: > This is because Template instances are intended to be used by template processing code, which may return a string or any other type. There is no canonical way to convert a Template to a string. If you tried to use the Template directly as if it were a string, you'd get either a TypeError or completely malformed HTML (the `repr` of the Template instance, which would look very different). >And why would you be validating HTML on the fly You wouldn't be; you'd be escaping user-generated content that tries to break a page by including HTML markup. | ||||||||
▲ | kazinator 7 days ago | parent [-] | |||||||
> There is no canonical way to convert a Template to a string. ... but let me assure you it's never the wrong one! | ||||||||
|