Re: XHTML2 and metainformation

Ernest Cline wrote:
> Here is a proposal of how to resolve both problems.
>
> <ml profile="http://www.dublincore.org">
>   <mi name="Publisher">DC Comics</mi>
> </ml>
> <ml profile="http://www.dccomics.com">
>   <mi name="Publisher">Karen Berger</mi>
> </ml>

The HTML 4.0 syntax for setting metadata schemas:

<head profile="http://www.dublincore.org">
    <meta name="DC.publisher">DC Comics</meta>
</head>

does have the limitation of not handling multiple profiles. The syntax also
implies that your "Keywords" and "Description" metas are part of your Dublic
Core metadata.

Your proposal is better, but I don't think a cryptic two-letter tag like
<ml> is necessary for such an uncommon element, and we already have <meta>
so why introduce <mi>?

I propose instead:

<schema profile="http://www.dccomics.com">
   <meta name="Publisher">Karen Berger</meta>
</schema>

Received on Thursday, 15 May 2003 06:17:53 UTC