Xhtml To Html

bungpeng

Well-known member
Joined
Sep 10, 2002
Messages
906
Location
Malaysia
Any ideas if I want to convert my XHTML source to HTML source?

My purpose is to open it using MS WORD, XHTML is not supported by MS WORD
 
  • Remove any XML document declares
    Code:
    <?xml version="1.0" encoding="UTF-8"?>
  • Remove xml:lang, xmlns and any other XML+XHTML attribute
  • Change the document type to HTML 4.x
  • Revert to minimized attributes
    Code:
    <td nowrap="nowrap">
    <!-- changes to -->
    <td nowrap>
  • Open empty elements
    Code:
    <br />
    <!-- changes to -->
    <br>
 
Back
Top