tags:

views:

46

answers:

1

Is it possible to extract the properties and values in a HTML file and export them to a XML file?

+2  A: 

Sure. A HTML File IS a (more or less) a XML file. You can use XSLT (http://www.w3.org/TR/xslt) for transforming HTML/XML to another HTML/XML. Or you can use any other language like PHP with xmldom.

aviv