>>> import albatross
>>> ctx = albatross.SimpleContext('.')
>>> ctx.locals.oops = '&<>"\''
>>> albatross.Template(ctx, '<magic>', '''
... <al-input type="text" name="oops" noescape whitespace>
... ''').to_html(ctx)
>>> ctx.flush_content()
<input type="text" name="oops" value="&<>"'" />
