Is it stupid of me to expect HTML in my XML?

I suspect you wouldn't like my first response to that question :-) so I'll move rapidly on to the second...

The sort of thing you describe would not be XML - end of story. This does not mean that the thing you describe would have no value, simply that it would not be XML and therefore you could not use the myriad XML tools (eg: XML::Parser) to work with it.

On a more helpful note, you can embed a chunk of HTML in XML as a CDATA section like this:

<doc> <title>This is a test</title> <htmlstring><![CDATA[ <p>Here is some HTML<br> It has an IMG tag: <img src="logo.png"> and a BR tag<br> </p> ]]></htmlstring> </doc>

Edit: Oh and I also meant to mention that the XML::LibXML module has the ability to parse HTML so you might find that you can use it to work with your hybrid documents in an XMLish way.


In reply to Re: Isn't there a NOPARSE option for XML::Parser ? by grantm
in thread Isn't there a NOPARSE option for XML::Parser ? by tosh

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.