Short URL: http://html5.org/r/4147
| SVN | Bug | Comment | Time (UTC) |
|---|---|---|---|
| 4147 | Add an example for Microdata based on http://gavin.carothers.name/2009/08/13/trying-to-understand-microdata-rdfa/comment-page-1/#comment-18 | 2009-10-16 06:16 |
Index: source =================================================================== --- source (revision 4146) +++ source (revision 4147) @@ -49960,7 +49960,54 @@ + <h4>Examples</h4> + <p>Here is an example of some HTML using Microdata to express RDF + statements:</p> + + <pre><dl itemscope + itemtype="http://purl.org/vocab/frbr/core#Work" + itemid="http://purl.oreilly.com/works/45U8QJGZSQKDH8N"> + <dt>Title</dt> + <dd><cite itemprop="http://purl.org/dc/terms/title">Just a Geek</cite></dd> + <dt>By</dt> + <dd><span itemprop="http://purl.org/dc/terms/creator">Wil Wheaton</span></dd> + <dt>Format</dt> + <dd itemprop="http://purl.org/vocab/frbr/core#realization" + itemscope + itemtype="http://purl.org/vocab/frbr/core#Expression" + itemid="http://purl.oreilly.com/products/9780596007683.BOOK"> + <link itemprop="http://purl.org/dc/terms/type" href="http://purl.oreilly.com/product-types/BOOK"> + Print + </dd> + <dd itemprop="http://purl.org/vocab/frbr/core#realization" + itemscope + itemtype="http://purl.org/vocab/frbr/core#Expression" + itemid="http://purl.oreilly.com/products/9780596802189.EBOOK"> + <link itemprop="http://purl.org/dc/terms/type" href="http://purl.oreilly.com/product-types/EBOOK"> + Ebook + </dd> +</dl></pre> + + <p>This is equivalent to the following Turtle:</p> + + <pre>@prefix dc: <http://purl.org/dc/terms/> . +@prefix frbr: <http://purl.org/vocab/frbr/core#> . + +<http://purl.oreilly.com/works/45U8QJGZSQKDH8N> a frbr:Work ; + dc:creator "Wil Wheaton"@en ; + dc:title "Just a Geek"@en ; + frbr:realization <http://purl.oreilly.com/products/9780596007683.BOOK>, + <http://purl.oreilly.com/products/9780596802189.EBOOK> . + +<http://purl.oreilly.com/products/9780596007683.BOOK> a frbr:Expression ; + dc:type <http://purl.oreilly.com/product-types/BOOK> . + +<http://purl.oreilly.com/products/9780596802189.EBOOK> a frbr:Expression ; + dc:type <http://purl.oreilly.com/product-types/EBOOK> .</pre> + + + <h3>Microdata DOM API</h3> <dl class="domintro">