You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Microdata on posts is currently declared as: <span itemscope="https://app.net/schemas/Post">
The itemscope attribute is boolean and should have no value; the schema should be specified in the itemtype attribute: <span itemscope itemtype="https://app.net/schemas/Post">
The HTML fails W3C validation, and since the post HTML is embedded in Climber pages, it in turn causes our pages to fail validation as well. Not a big deal obviously, but conforming to standards makes me feel warm and fuzzy inside. I'm currently fixing it on our end with a regex anyway, but I figured you'd want to know.
Microdata on posts is currently declared as:
<span itemscope="https://app.net/schemas/Post">
The
itemscope
attribute is boolean and should have no value; the schema should be specified in theitemtype
attribute:<span itemscope itemtype="https://app.net/schemas/Post">
http://schema.org/docs/gs.html#microdata_itemscope_itemtype
http://www.w3.org/html/wg/drafts/microdata/master/Overview.html#typed-items
The text was updated successfully, but these errors were encountered: