genshi.template.text
Plain text templating engine.
TextTemplate
Implementation of a simple text-based template engine.
>>> tmpl = TextTemplate('''Dear $name, ... ... We have the following items for you: ... #for item in items ... * $item ... #end ... ... All the best, ... Foobar''') >>> print tmpl.generate(name='Joe', items=[1, 2, 3]).render('text') Dear Joe, <BLANKLINE> We have the following items for you: * 1 * 2 * 3 <BLANKLINE> All the best, Foobar
See ApiDocs, Documentation
Last modified 9 years ago
Last modified on Dec 10, 2015, 6:15:05 AM