[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: issue: PaceXmlBaseEverywhere/PaceXmlBaseId




In PaceXmlBaseEverywhere, I think the example needs a slight modification on this line:


<content type="application/xhtml+xml">Check out <a href="rant">this</a>!</content>

That needs another element to declare the XHTML namespace--like this for example:

<content type="application/xhtml+xml"><div xmlns="http://www.w3.org/1999/xhtml";>Check out <a href="rant">this</a>!</div></content>

The following might also work, though it raises the question of whether we're going to require inline XML to be enclosed entirely in one block element:

<content type="application/xhtml+xml">Check out <a href="rant" xmlns="http://www.w3.org/1999/xhtml";>this</a>!</content>

Antone