[Web-SIG] htmlgen

Gregory (Grisha) Trubetskoy grisha at modpython.org
Wed Oct 29 22:46:31 EST 2003



On Wed, 29 Oct 2003, Bill Janssen wrote:
>
> Can you describe what HTMLgen does?


>>> from HTMLgen import *
>>> ul = UL(["blah", "blah"])
>>> ul.append(H(1, "bleh"))
>>> print ul
<UL>
<LI>blah
<LI>blah
<LI><H1>bleh</H1>

</UL>

>>>



More information about the Web-SIG mailing list