Python分层模板库 Templayer

openkk 13年前
     <p>Templayer是一个用在 Python和Django 的分层模板库的 。它目前只支持的HTML生成,但其简单的设计很容易扩展,以支持其他文件格式。</p>    <p>示例:</p>    <pre class="brush:python; toolbar: true; auto-links: false;">   <html>    <head><title>%title%</title></head>    <body>    <h1>%title%</h1>    {contents}     {report}    <h3>%day%</h3>    %contents%    {/report}     {happening}<p>%contents%</p>    {/happening}     {/contents}    <hr>    <p>Generated on %date%.</p>    </body>    </html></pre>    <p></p>    <p><strong>项目主页:</strong><a href="http://www.open-open.com/lib/view/home/1322988498249" target="_blank">http://www.open-open.com/lib/view/home/1322988498249</a></p>