Is there something similar to
tal:replace that applies any markup in the object you are replacing the tag
with? Example:
-index_html-
<html>
<body>
<span
tal:replace=”container/content”></span>
</body
</html>
-content-
<h1>Hello World</h1>
produces this when I view:
<h1>Hello World </h1>