Tagged Questions
2
votes
3answers
610 views
Python template engines: What are the real benifits and drawbacks to XML vs custom syntax
I'm interested in knowing what are the real difference (benefits and drawbacks) between the two types of python templating engines; XML (like Genshi or Kid) and a custom syntax (like Cheetah or ...
1
vote
1answer
457 views
Ideal way to define a table or grid in XML?
HTML
<table border="1" width="400">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
...