>>> import albatross
>>> ctx = albatross.SimpleContext('.')
>>> albatross.Template(ctx, '<magic>', '''
... Before,<al-comment>
...  This will not be executed
... </al-comment> after.
... ''').to_html(ctx)
>>> ctx.flush_content()
Before, after.
