richill has asked for the wisdom of the Perl Monks concerning the following question:
I have a xhtml document containing 4000 nested tables upto 7 layers deep. All it shows is a nested directory structure. What is a good module to simplfy this. I want to convert it to XML document in the form
<root>
<node>
<name></name>
<node>
<name></name>
</node>
</node>
</root>
I think that using tokeparser to step though the document, testing the tokens will work,and writing xml to a seperate file depending on the results will work or is there a better way?
I've looked at using XSLT to do the transform but either Im missing something or it doesnt cope well with nested structures.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
[OT] Re: Converting very nested XHTML to XML
by idsfa (Vicar) on Jul 07, 2006 at 21:37 UTC | |
by richill (Monk) on Jul 10, 2006 at 16:05 UTC | |
|
Re: Converting very nested XHTML to XML
by Tanktalus (Canon) on Jul 07, 2006 at 21:14 UTC | |
|
Re: Converting very nested XHTML to XML
by shmem (Chancellor) on Jul 07, 2006 at 22:29 UTC |