: I'd like to include a html file in a xml file and keep all the tags's
: properties.
:
: I don't have any problem to specifiate a external entities and reference it
: in a xml file or via a xsl. BUT I'd like to keep the tags's properties of
: my external html file.
What do you mean by "the tags' properties"? Their semantics? XML is
about syntax only, and is completely agnostic to semantics, so
incorporating an HTML document in a larger XML document doesn't affect
its semantics at all. Unless you're going to store the HTML in a CDATA
section, you *will* have to make sure that it conforms to XML *syntax*
(all tags closed, all attribute values quoted, etc). Or do you mean
something else entirely? It would help if you could be more specific
about what you want to do.