1
schema.org itemprop
ノードの値としてマークアップを付ける方法はありますか?例えば。これは動作します:schema.org itempropの値としてマークアップを付ける方法はありますか?
<div itemscope itemtype ="http://schema.org/Movie">
<h1 itemprop="name">Avatar</h1>
<span>Director: <span itemprop="director">James Cameron</span> (born August 16, 1954)</span>
<span itemprop="genre">Science fiction</span>
<a href="../movies/avatar-theatrical-trailer.html" itemprop="trailer">Trailer</a>
</div>
しかし、あなたがこの作品にすることができます。
<div itemscope itemtype ="http://schema.org/Movie">
<h1 itemprop="name">Avatar</h1>
<span>Director: <span itemprop="director">James Cameron</span> (born August 16, 1954)</span>
<span itemprop="genre"> <p>Science</p> <h2>fiction</h2></span> <<====
<a href="../movies/avatar-theatrical-trailer.html" itemprop="trailer">Trailer</a>
</div>