I'm currently learning about all things RDF and was wondering what the equivalent RDFa markup would look like for this RDF+XML snippet:
<?xml version="1.0" encoding="utf-8" ?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dbo="http://dbpedia.org/ontology#" >
<rdf:Description rdf:about="http://dbpedia.org/page/Bavaria">
<dbo:population>12440000</dbo:population>
<dbo:capital rdf:resource="http://dbpedia.org/page/Munich" />
</rdf:Description>
</rdf:RDF>
I've been looking at the documentation, but can't really figure this out.