W3C マークアップ検証で Web サイトを検証できませんでした。
検証エラーの 1 つの例を次に示します。
Error: Attribute xmlns:content not allowed here.
私はいくつかの調査を行い、一部の記事では次の変更を推奨しています。xmlns:name="http://url" syntax into the prefix="name:http://url"
ただし、複数の xmlns 属性があります。
この場合、プレフィックスの書き方がわかりません。
オリジナル:
`<html lang="en" dir="ltr"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:og="http://ogp.me/ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:sioc="http://rdfs.org/sioc/ns#"
xmlns:sioct="http://rdfs.org/sioc/types#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#">`
各属性の間はスペースで区切られていますか?
<html lang="en" dir="ltr" prefix="content:http://purl.org/rss/1.0/modules/content/ dc:http://purl.org/dc/terms/ foaf:http://xmlns.com/foaf/0.1/">
\n
または改行で区切る必要がありますか?
w3.org Web サイトをチェックインしましたが、属性が新しい行で区切られているようです。
私は正しいですか?
http://www.w3.org/TR/2011/WD-rdfa-core-20111215/