In this site[1] there's a really cool app that generates css base on
the input xhtml.
For example, the xthml:
<html>
<body>
<div id="example">
<p>Hello word</p>
</div>
</body>
</html>
This will generate this css:
#example { }
#example p { }
My question is: is this possible to implement this thing using Ply?
I need to develop any app with a parser for a college project and I
like to *try* and do this, but it will help a lot if a knew for a fact
that this can be done with PLY.
Thanks in advance.
--
Fabián
[1] :
http://lab.xms.pl/css-generator/