Mercurial > genshi > mirror
view examples/includes/common/macros.html @ 605:d0345c64da65 trunk
Text templates now default to rendering as plain text; it is no longer necessary to explicitly specify the "text" method to the `render()` or `serialize()` method of the generated markup stream. See tickets #62 and #118.
author | cmlenz |
---|---|
date | Mon, 27 Aug 2007 19:04:20 +0000 |
parents | 84168828b074 |
children |
line wrap: on
line source
<div xmlns:py="http://genshi.edgewall.org/" py:strip=""> <div py:def="macro1">reference me, please</div> <div py:def="macro2(name, classname='expanded')" class="${classname}"> Hello ${name.title()} </div> <span py:match="greeting" class="greeting"> Hello ${select('@name')} </span> <span py:match="span[@class='greeting']" style="text-decoration: underline" py:content="select('text()')"/> </div>