Converting HTML to XML

前端 未结 3 824
迷失自我
迷失自我 2020-11-27 05:46

I have got hundereds of HTML files that need to be conveted in XML. We are using these HTML to serve contents for applications but now we have to serve these contents as XM

3条回答
  •  醉酒成梦
    2020-11-27 06:15

    Remember that HTML and XML are two distinct concepts in the tree of markup languages. You can't exactly replace HTML with XML . XML can be viewed as a generalized form of HTML, but even that is imprecise. You mainly use HTML to display data, and XML to carry(or store) the data.

    This link is helpful: How to read HTML as XML?

    More here - difference between HTML and XML

提交回复
热议问题