<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


Reply via email to