Last modified: 2013-11-05 17:10:57 UTC
In this article for example: http://parsoid.wmflabs.org/enwikivoyage/South_America You have this node in the the <body>: <link rel="mw:PageProp/Category" href="./Category:Has_custom_banner" data-parsoid='{"stx":"simple","a":{"href":"./Category:Has_custom_banner"},"sa":{"href":"Category:Has custom banner"}}'/> This is pretty odd because: * This is a "metadata" which shouldn't be mixed with rendered data * <link> nodes should be in the <head>, according the W3C ("The LINK element may only appear in the head of a document."):http://www.w3.org/TR/html401/struct/links.html
* We are using HTML5+RDFa, which allows link in the body [1]. * I agree with you that invisible metadata like this should not be in the body. We plan to move it into separate page properties, see bug 53508. Until this move is also done wikitext we'll still have to preserve the position of the metadata within the DOM so that we can round-trip it properly. [1]: http://www.w3.org/TR/rdfa-in-html/
*** This bug has been marked as a duplicate of bug 53508 ***