How would one write markup for a book with multiple authors?
This is what I currently have, it is marked up for just one author:
<div itemscope itemtype="http://schema.org/Book">
<h1>My Book</h1>
<p>by
<span itemprop="author">
<span itemscope itemtype="http://schema.org/Person">
<span itemprop="name">Author 1</span>
</span>
</span>
</p>
</div>
Would I just need to add multiple authors like this?
<span itemprop="author">
<span itemscope itemtype="http://schema.org/Person">
<span itemprop="name">Author 1</span>
</span>
</span>
<span itemprop="author">
<span itemscope itemtype="http://schema.org/Person">
<span itemprop="name">Author 2</span>
</span>
</span>
<span itemprop="author">
<span itemscope itemtype="http://schema.org/Person">
<span itemprop="name">Author 3</span>
</span>
</span>
<div>... and css to style it... not<p>. – Simon Hayter Jan 26 '16 at 15:13