[Bug 14202] Describe how to use microdata to mark up publication and modification date information for <article>s

http://www.w3.org/Bugs/Public/show_bug.cgi?id=14202

--- Comment #12 from Ian 'Hixie' Hickson <ian@hixie.ch> 2011-10-28 08:22:23 UTC ---
If the use case here is just a replacement for Atom/RSS, i.e. inline
syndication annotations for aggregators, then we can still use the schema.org
vocabulary, we just need to also tell people to specify a "url" and make sure
that the permalink is what is used. e.g.

   <article itemscope itemtype="http://schema.org/Blog" id="post24">
    <h1>Example</h1>
    <p><data itemprop="datePublished" value="2011-01-01">January 1 2011</data>
    (updated <data itemprop="dateModified" value="2011-01-02">January
2nd</data>)</p>
    <p>Hello.</p>
    <footer>
     <p><a itemprop="url" href="#post24">Permalink</a></p>
    </footer>
   </article>

Then we would say that an aggregator would have to look up the <article> given
by the "url" property of the Blog items and syndicate that. Or something.

-- 
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Friday, 28 October 2011 08:22:29 UTC