RE: RDF in HTML pages

Charles McCathieNevile wrote:
>
>
> Does anyone have an RDF parser that can handle, or could be
> tweaked to handle
> the following:
>
> <html>
> <meta name="http://example.org/RDFproperties/someProperty"
> content="http://example.org/Objects/someObject" />
> ...
>
> as a way of making RDF statements in a page, where the subject is
> the page?
>

In RDDL which is based on XHTML Basic (http://www.rddl.org):

<html>
<body>
	<rddl:resource
		xlink:arcrole="http://example.org/RDFproperties/someProperty"
		xlink:href="http://example.org/Objects/someObject"
	><p>This is equivalent to the
RDF ["",http://example.org/RDFproperties/someProperty ,
http://example.org/Objects/someObject] </p>
	</rddl:resource>

-Jonathan

Received on Thursday, 8 March 2001 23:26:10 UTC