Could you please explain to me why these two extracts, when parsed, do not produce the same statements:
<table> <tr> <span about="#2105555" typeof="foaf:Person"> <td>1</td> <td><span property="foaf:firstName">Meri</span></td> <td><span property="foaf:familyName">Kovac</span></td> </span> </tr> </table> and <table> <tr about="#2105555" typeof="foaf:Person"> <td>1</td> <td><span property="foaf:firstName">Meri</span></td> <td><span property="foaf:familyName">Kovac</span></td> </tr> </table> The parsing result (using RDF distiller) is following: <foaf:Person rdf:about="http://localhost:8080/rdfa.html#2105555"/> <rdf:Description rdf:about="http://localhost:8080/rdfa.html"> <foaf:firstName>Meri</foaf:firstName> <foaf:familyName>Kovac</foaf:familyName> </rdf:Description> and <foaf:Person rdf:about="http://localhost:8080/rdfa.html#2105555"> <foaf:firstName>Meri</foaf:firstName> <foaf:familyName>Kovac</foaf:familyName> </foaf:Person> The second one is the correct one. Why is the subject mixed up in the first one? Thnx, Meri