#!/usr/bin/env python import warnings as _warnings _warnings.resetwarnings() _warnings.filterwarnings('error') # BEGIN INCLUDE from tdi.tools import html as html_tools from tdi.tools import css as css_tools from tdi.tools import javascript as javascript_tools from tdi import html tpl = html.replace(eventfilters=[ html_tools.MinifyFilter, css_tools.MinifyFilter, javascript_tools.MinifyFilter, ]).from_string(""" Hello World!

Hello World!

""".lstrip()) tpl.render()