- From: Micah Dubinko <mdubinko@yahoo-inc.com>
- Date: Wed, 12 Mar 2008 12:53:18 -0700
- To: public-rdf-in-xhtml-tf@w3.org
>
> <e rel="rel:foo">
> <f property="prop:bar" content="x"/>
> <g about="http://x"/>
> </e>
>
> What is the correct set of triples an RDFa extractor should generate per
> Last Call rules?
>There are a couple of very minor errors in the LC rules that will be
>corrected, so the following is what _should_ be generated:
>
> <> rel:foo _:a .
> _:a prop:bar "x" .
> <> rel:foo<http://x> .
Thanks, Mark.
Now, if the order of the inner elements was swapped, it would be different, right?
<e rel="rel:foo">
<g about="http://x"/>
<f property="prop:bar" content="x"/>
</e>
Would yield
<> rel:foo <http://x>
<http://x> prop:bar "x"
Right?
-m
Received on Wednesday, 12 March 2008 19:53:52 UTC