In the context of various bits and pieces of work recently (more of which I'll write about in some upcoming posts), I've been finding myself describing how document metadata that can be represented using DCMI's DC-HTML meta data profile, described in Expressing Dublin Core metadata using HTML/XHTML meta and link elements, might also be represented using RDFa. (N.B. Here I'm considering only the current RDFa in XHTML W3C Recommendation, not the newly announced drafts for RDFa 1.1). So I thought I'd quickly list some examples here. Please note: I don't intend this to be a complete tutorial on using RDFa. Far from it; here I focus only on the case of "document metadata" whereas of course RDFa can be used to represent data "about" any resources. And these are really little more than a few rough notes which one day I might reuse somewhere else.
I really just wanted to illustrate that:
- in terms of its use with the XHTML meta and link elements, RDFa has many similarities to the DC-HTML profile - unsurprisingly, as the RDF model underlies both; and
- RDFa also provides the power and flexibility to represent data that can not be expressed using the DC-HTML profile.
The main differences between using RDFa in XHTML and using the DC-HTML profile are:
- RDFa supports the full RDF model, not just the particular subset supported by DC-HTML
- RDFa introduces some new XML attributes (@about, @property, @resource, @datatype, @typeof)
- RDFa uses a datatype called CURIE for the abbreviation of URIs; DC-HTML uses a prefixed name convention which is essentially specific to that profile (though it was also adopted by the Embedded RDF profile)
- Perhaps most significantly, RDFa can be used anywhere in an XHTML document, so the same syntactic conventions can be used both for document metadata and for data ("about" any resources) embedded in the body of the document
I'm presenting these examples following the description set model of the DCMI Abstract Model, and in more or less the same order that the DC-HTML specification presents the same set of concepts.
For each example, I present the data:
- using DC-Text
- using Turtle
- in XHTML using DC-HTML
- in XHTML+RDFa, using meta and link elements
- in XHTML+RDFa, using block and inline elements (to illustrate that the same data could be embedded in the body of an XHTML document, rather than only in the head)
As an aside, it is possible to use the DC-HTML profile alongside RDFa in the same document, but I haven't bothered to show that here.
Footnote: Hmmm. Considering that I said to myself at the start of the year that I was rather tired of thinking/writing about syntax, I still seem to be doing an awful lot of it! Will try to write about other things soon....
1. Literal Value Surrogates
See DC-HTML 4.5.1.2.
1.1 Plain Value String
1.1.1 DC-Text:
@prefix dc: <http://purl.org/dc/terms/> .
DescriptionSet (
Description (
Statement (
PropertyURI ( dc:title )
LiteralValueString ( "My World Cup 2010 Review" )
)
)
)
1.1.2 Turtle:
@prefix dc: <http://purl.org/dc/terms/> .
<> dc:title "My World Cup 2010 Review" .
1.1.3 XHTML using DC-HTML:
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head
profile="http://dublincore.org/documents/2008/08/04/dc-html/">
<title>My World Cup 2010 Review</title>
<link rel="schema.DC" href="http://purl.org/dc/terms/" />
<meta name="DC.title" content="My World Cup 2010 Review" />
</head>
</html>
1.1.4 XHTML+RDFa using meta and link
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/terms/"
version="XHTML+RDFa 1.0">
<head>
<title>My World Cup 2010 Review</title>
<meta property="dc:title" content="My World Cup 2010 Review" />
</head>
</html>
In this example, it would also be possible to simply add an attribute to the title element, instead of introducing the meta element:
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/terms/"
version="XHTML+RDFa 1.0">
<head>
<title property="dc:title">My World Cup 2010 Review</title>
</head>
</html>
1.1.5 XHTML+RDFa in body
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/terms/"
version="XHTML+RDFa 1.0">
<head>
<title>My World Cup 2010 Review</title>
</head>
<body>
<h1 property="dc:title">My World Cup 2010 Review</h1>
</body>
</html>
1.2 Plain Value String with Language Tag
1.2.1 DC-Text:
@prefix dc: <http://purl.org/dc/terms/> .
DescriptionSet (
Description (
Statement (
PropertyURI ( dc:title )
LiteralValueString ( "My World Cup 2010 Review"
Language ( en )
)
)
)
)
1.2.2 Turtle:
@prefix dc: <http://purl.org/dc/terms/> .
<> dc:title "My World Cup 2010 Review"@en .
1.2.3 XHTML using DC-HTML:
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head
profile="http://dublincore.org/documents/2008/08/04/dc-html/">
<title>My World Cup 2010 Review</title>
<link rel="schema.DC" href="http://purl.org/dc/terms/" />
<meta name="DC.title"
xml:lang="en" content="My World Cup 2010 Review" />
</head>
</html>
1.2.4 XHTML+RDFa using meta and link
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/terms/"
version="XHTML+RDFa 1.0">
<head>
<title>My World Cup 2010 Review</title>
<meta property="dc:title"
xml:lang="en" content="My World Cup 2010 Review" />
</head>
</html>
1.2.5 XHTML+RDFa in body
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/terms/"
version="XHTML+RDFa 1.0">
<head>
<title>My World Cup 2010 Review</title>
</head>
<body>
<h1 property="dc:title" xml:lang="en">My World Cup 2010 Review</h1>
</body>
</html>
1.3 Typed Value String
1.3.1 DC-Text:
@prefix dc: <http://purl.org/dc/terms/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
DescriptionSet (
Description (
Statement (
PropertyURI ( dc:modified )
LiteralValueString ( "2010-07-04"
SyntaxEncodingSchemeURI ( xsd:date )
)
)
)
)
1.3.2 Turtle:
@prefix dc: <http://purl.org/dc/terms/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<> dc:modified "2010-07-04"^^xsd:date .
1.3.3 XHTML using DC-HTML:
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head
profile="http://dublincore.org/documents/2008/08/04/dc-html/">
<title>My World Cup 2010 Review</title>
<link rel="schema.DC" href="http://purl.org/dc/terms/" />
<link rel="schema.XSD" href="http://www.w3.org/2001/XMLSchema#" >
<meta name="DC.modified"
scheme="XSD.date" content="2010-07-04" />
</head>
</html>
1.3.4 XHTML+RDFa using meta and link
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
version="XHTML+RDFa 1.0">
<head>
<title>My World Cup 2010 Review</title>
<meta property="dc:modified"
datatype="xsd:date" content="2010-07-04" />
</head>
</html>
1.3.5 XHTML+RDFa in body
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
version="XHTML+RDFa 1.0">
<head>
<title>My World Cup 2010 Review</title>
</head>
<body>
<p>Date last modified:
<span property="dc:modified"
datatype="xsd:date">2010-07-04</span>
</p>
</body>
</html>
2. Non-Literal Value Surrogates
See DC-HTML 4.5.2.2.
2.1 Value URI
2.1.1 DC-Text:
@prefix dc: <http://purl.org/dc/terms/> .
@prefix ex: <http://example.org/resource/> .
DescriptionSet (
Description (
Statement (
PropertyURI ( dc:subject )
ValueURI ( ex:2010_FIFA_World_Cup )
)
)
)
)
2.1.2 Turtle:
@prefix dc: <http://purl.org/dc/terms/> .
@prefix ex: <http://example.org/resource/> .
<> dc:subject ex:2010_FIFA_World_Cup .
2.1.3 XHTML using DC-HTML:
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head
profile="http://dublincore.org/documents/2008/08/04/dc-html/">
<title>My World Cup 2010 Review</title>
<link rel="schema.DC" href="http://purl.org/dc/terms/" />
<link rel="DC.subject"
href="http://example.org/resource/2010_FIFA_World_Cup" />
</head>
</html>
2.1.4 XHTML+RDFa using meta and link
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/terms/"
version="XHTML+RDFa 1.0">
<head>
<title>My World Cup 2010 Review</title>
<link rel="dc:subject"
href="http://example.org/resource/2010_FIFA_World_Cup" />
</head>
</html>
2.1.5 XHTML+RDFa in body
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/terms/"
version="XHTML+RDFa 1.0">
<head>
<title>My World Cup 2010 Review</title>
</head>
<body>
<p>About:
<a rel="dc:subject"
href="http://example.org/resource/2010_FIFA_World_Cup">
The 2010 World Cup
</a>
</p>
</body>
</html>
2.2 Value URI with Plain Value String
2.2.1 DC-Text:
@prefix dc: <http://purl.org/dc/terms/> .
@prefix ex: <http://example.org/resource/> .
DescriptionSet (
Description (
Statement (
PropertyURI ( dc:subject )
ValueURI ( ex:2010_FIFA_World_Cup )
ValueString ( "2010 FIFA World Cup" )
)
)
)
)
2.2.2 Turtle:
@prefix dc: <http://purl.org/dc/terms/> .
@prefix ex: <http://example.org/resource/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
<> dc:subject ex:2010_FIFA_World_Cup .
ex:2010_FIFA_World_Cup rdf:value "2010 FIFA World Cup" .
2.2.3 XHTML using DC-HTML:
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head
profile="http://dublincore.org/documents/2008/08/04/dc-html/">
<title>My World Cup 2010 Review</title>
<link rel="schema.DC" href="http://purl.org/dc/terms/" />
<link rel="DC.subject"
href="http://example.org/resource/2010_FIFA_World_Cup"
title="2010 FIFA World Cup" />
</head>
</html>
2.2.4 XHTML+RDFa using meta and link
Here the single DCAM statement is made up of two RDF triples, and in RDFa both a link and a meta element are used:
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:ex="http://example.org/resource/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
version="XHTML+RDFa 1.0">
<head>
<title>My World Cup 2010 Review</title>
<link rel="dc:subject"
href="http://example.org/resource/2010_FIFA_World_Cup" />
<meta about="[ex:2010_FIFA_World_Cup]"
property="rdf:value" content="2010 FIFA World Cup" />
</head>
</html>
2.2.5 XHTML+RDFa in body
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:ex="http://example.org/resource/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
version="XHTML+RDFa 1.0">
<head>
<title>My World Cup 2010 Review</title>
</head>
<body>
<p>About:
<a rel="dc:subject"
href="http://example.org/resource/2010_FIFA_World_Cup">
<span property="rdf:value">2010 FIFA World Cup</span>
</a>
</p>
</body>
</html>
2.3 Value URI with Plain Value String with Language Tag
2.3.1 DC-Text:
@prefix dc: <http://purl.org/dc/terms/> .
@prefix ex: <http://example.org/resource/> .
DescriptionSet (
Description (
Statement (
PropertyURI ( dc:subject )
ValueURI ( ex:2010_FIFA_World_Cup )
ValueString ( "2010 FIFA World Cup"
Language ( en )
)
)
)
)
)
2.3.2 Turtle:
@prefix dc: <http://purl.org/dc/terms/> .
@prefix ex: <http://example.org/resource/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
<> dc:subject ex:2010_FIFA_World_Cup .
ex:2010_FIFA_World_Cup rdf:value "2010 FIFA World Cup"@en .
2.3.3 XHTML using DC-HTML:
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head
profile="http://dublincore.org/documents/2008/08/04/dc-html/">
<title>My World Cup 2010 Review</title>
<link rel="schema.DC" href="http://purl.org/dc/terms/" />
<link rel="DC.subject"
href="http://example.org/resource/2010_FIFA_World_Cup"
xml:lang="en" title="2010 FIFA World Cup" />
</head>
</html>
2.3.4 XHTML+RDFa using meta and link
Again, the single DCAM statement is made up of two RDF triples, and in RDFa both a link and a meta element are used:
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:ex="http://example.org/resource/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
version="XHTML+RDFa 1.0">
<head>
<title>My World Cup 2010 Review</title>
<link rel="dc:subject"
href="http://example.org/resource/2010_FIFA_World_Cup" />
<meta about="[ex:2010_FIFA_World_Cup]"
property="rdf:value"
xml:lang="en" content="2010 FIFA World Cup" />
</head>
</html>
With RDFa, multiple value strings might be provided, using multiple meta elements (which is not supported in DC-HTML):
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:ex="http://example.org/resource/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
version="XHTML+RDFa 1.0">
<head>
<title>My World Cup 2010 Review</title>
<link rel="dc:subject"
href="http://example.org/resource/2010_FIFA_World_Cup" />
<meta about="[ex:2010_FIFA_World_Cup]"
property="rdf:value"
xml:lang="en" content="2010 FIFA World Cup" />
<meta about="[ex:2010_FIFA_World_Cup]"
property="rdf:value"
xml:lang="es" content="Copa Mundial de Fútbol de 2010" />
</head>
</html>
2.3.5 XHTML+RDFa in body
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
version="XHTML+RDFa 1.0">
<head>
<title>My World Cup 2010 Review</title>
</head>
<body>
<p>About:
<a rel="dc:subject"
href="http://example.org/resource/2010_FIFA_World_Cup">
<span property="rdf:value"
xml:lang="en">2010 FIFA World Cup</span>
</a>
</p>
</body>
</html>
2.4 Value URI with Typed Value String
2.4.1 DC-Text:
@prefix dc: <http://purl.org/dc/terms/> .
@prefix ex: <http://example.org/resource/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
DescriptionSet (
Description (
Statement (
PropertyURI ( dc:language )
ValueURI ( ex:English )
ValueString ( "en"
SyntaxEncodingSchemeURI ( xsd:language )
)
)
)
)
2.4.2 Turtle:
@prefix dc: <http://purl.org/dc/terms/> .
@prefix ex: <http://example.org/resource/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<> dc:language ex:English .
ex:English rdf:value "en"^^xsd:language .
2.4.3 XHTML using DC-HTML:
Not supported by DC-HTML.
2.4.4 XHTML+RDFa using meta and link
Again, the single DCAM statement is made up of two RDF triples, and in RDFa both a link and a meta element are used:
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:ex="http://example.org/resource/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
version="XHTML+RDFa 1.0">
<head>
<title>My World Cup 2010 Review</title>
<link rel="dc:language"
href="http://example.org/resource/English" />
<meta about="[ex:English]"
property="rdf:value" datatype="xsd:language" content="en" />
</head>
</html>
2.4.5 XHTML+RDFa in body
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
version="XHTML+RDFa 1.0">
<head>
<title>My World Cup 2010 Review</title>
</head>
<body>
<p>Language:
<a rel="dc:language"
href="http://example.org/resource/English">
<span property="rdf:value"
datatype="xsd:language" content="en">English</span>
</a>
</p>
</body>
</html>
2.5 Value URI with Vocabulary Encoding Scheme URI
2.5.1 DC-Text:
@prefix dc: <http://purl.org/dc/terms/> .
@prefix ex: <http://example.org/resource/> .
DescriptionSet (
Description (
Statement (
PropertyURI ( dc:subject )
ValueURI ( ex:2010_FIFA_World_Cup )
VocabularyEncodingSchemeURI ( ex:MyScheme )
)
)
)
)
2.5.2 Turtle:
@prefix dc: <http://purl.org/dc/terms/> .
@prefix dcam: <http://purl.org/dc/dcam/> .
@prefix ex: <http://example.org/resource/> .
<> dc:subject ex:2010_FIFA_World_Cup .
ex:2010_FIFA_World_Cup dcam:memberOf ex:MyScheme .
2.5.3 XHTML using DC-HTML:
Not supported by DC-HTML.
2.5.4 XHTML+RDFa using meta and link
Again, the single DCAM statement is made up of two RDF triples, and in XHTML using RDFa two link elements are used:
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:dcam="http://purl.org/dc/dcam/"
xmlns:ex="http://example.org/resource/"
version="XHTML+RDFa 1.0">
<head>
<title>My World Cup 2010 Review</title>
<link rel="dc:subject"
href="http://example.org/resource/2010_FIFA_World_Cup" />
<link about="[ex:2010_FIFA_World_Cup]"
rel="dcam:memberOf"
href="http://example.org/resource/MyScheme" />
</head>
</html>
2.5.5 XHTML+RDFa in body
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:dcam="http://purl.org/dc/dcam/"
version="XHTML+RDFa 1.0">
<head>
<title>My World Cup 2010 Review</title>
</head>
<body>
<p>About:
<a rel="dc:subject"
href="http://example.org/resource/2010_FIFA_World_Cup">
<span rel="dcam:memberOf"
resource="http://example.org/resource/MyScheme" />
The 2010 World Cup
</a>
</p>
</body>
</html>
Recent Comments