HTML/DOM parser
is there a library in lisp/scheme that lets me parse validated html
files and store it as a tree?
for example, i want to be able to easily, say, replace the following
<hr><p>References</p>
<pre>
• <a href=a>a...</a>
....
</pre>
to
<hr><p>References</p>
<ul>
<li><a href=a>a...</a></li>
....
</ul>
Thanks.
Xah
xah@xxxxxxxxxx
∑
http://xahlee.org/
.
Relevant Pages
- HTML/DOM parser
... is there a module that lets me parse validated html files and store it ... as a tree? ... (comp.lang.perl.misc) - HTML/DOM parser
... is there a module that lets me parse validated html files and store it ... as a tree? ... (comp.lang.python) - Re: Parsing and storing formulas
... you could easily store different views/stored ... >I was wondering how I can parse a mathematical formula in a storable way. ... > be stored for in the database. ... > The second idea is to represent the formula as a tree. ... (microsoft.public.dotnet.languages.csharp) - How to delete the whole binary search tree?
... a list of customers records are read from a file. ... have to store them in a binary search tree. ... (comp.lang.java.help) - Re: Deleting a node from TreeView
... to store the states, but I'm not sure its worth the effort. ... products on Windows 2000 and some Windows NT systems with 2000 libraries. ... This allows you to open the tree in any state you want it. ... > in a treeview control I'd be eternally grateful! ... (microsoft.public.access.formscoding) |
|