Skip to content

Instantly share code, notes, and snippets.

@inklesspen
Created October 12, 2009 06:04
Show Gist options
  • Select an option

  • Save inklesspen/208173 to your computer and use it in GitHub Desktop.

Select an option

Save inklesspen/208173 to your computer and use it in GitHub Desktop.
>>> from mako.template import Template
>>> templatetext = r"""
... Hello!
... % for x in [1,2,3,4,5]:
... ${x} \
... % endfor
...
... This is indented.
... Whee
... Now back out.
... % for x in [1,2,3,4,5]:
... ${x}
... % endfor
... """
>>> mt = Template(templatetext)
>>> print mt.render()
Hello!
1 2 3 4 5
This is indented.
Whee
Now back out.
1
2
3
4
5
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment