First off… I apologize for the long post. I wanted to include all the information necessary to understand and reproduce this issue.
This bug prevents embedding machine-readable licenses from creative commons in WordPress posts. The RDF output for the machine-readable license is embedded in a multiple line html comment that gets destroyed during posting. I have tried turning off the option of have WordPress correct invalid xhtml, and I have tried listing the entire code on one line. I believe the problem in this case is that the code is “too long” and WP inserts its own line breaks, and consequently eats the comment tags.
Correct code from Creative Commons (minus line breaks) is as follows:
<!-- <rdf:RDF xmlns="https://web.resource.org/cc/" xmlns:dc="https://purl.org/dc/elements/1.1/" xmlns:rdf="https://www.w3.org/1999/02/22-rdf-syntax-ns#"><Work rdf:about=""> <dc:type rdf:resource="https://purl.org/dc/dcmitype/MovingImage" /> <license rdf:resource="https://creativecommons.org/licenses/by-nc-sa/2.0/" /></Work><License rdf:about="https://creativecommons.org/licenses/by-nc-sa/2.0/"> <permits rdf:resource="https://web.resource.org/cc/Reproduction" /> <permits rdf:resource="https://web.resource.org/cc/Distribution" /> <requires rdf:resource="https://web.resource.org/cc/Notice" /> <requires rdf:resource="https://web.resource.org/cc/Attribution" /> <prohibits rdf:resource="https://web.resource.org/cc/CommercialUse" /> <permits rdf:resource="https://web.resource.org/cc/DerivativeWorks" /> <requires rdf:resource="https://web.resource.org/cc/ShareAlike" /></License></rdf:RDF> -->
WP mangles that code into (note the addition of the p and br tags, as well as the mangling of the open comment tag and the disappearance of the close comment tag):
-- <rdf:RDF xmlns="https://web.resource.org/cc/" xmlns:dc="https://purl.org/dc/elements/1.1/" xmlns:rdf="https://www.w3.org/1999/02/22-rdf-syntax-ns#"><Work rdf:about=""> <dc:type rdf:resource="https://purl.org/dc/dcmitype/MovingImage" />
<license rdf:resource="https://creativecommons.org/licenses/by-nc-sa/2.0/" /></Work><License rdf:about="https://creativecommons.org/licenses/by-nc-sa/2.0/">
<permits rdf:resource="https://web.resource.org/cc/Reproduction" />
<permits rdf:resource="https://web.resource.org/cc/Distribution" /> <requires rdf:resource="https://web.resource.org/cc/Notice" /> <requires rdf:resource="https://web.resource.org/cc/Attribution" />
<prohibits rdf:resource="https://web.resource.org/cc/CommercialUse" />
<permits rdf:resource="https://web.resource.org/cc/DerivativeWorks" /> <requires rdf:resource="https://web.resource.org/cc/ShareAlike" /></License></rdf:RDF> –>