Hola. Había preguntado por algo parecido hace tiempo y concluí que debería ser algo así (el spec de HTML4 lo confirma también):
Código HTML:
<dl>
<dt>Costello</dt>
<dd>Well then who's on first?</dd>
<dt>Abbott</dt>
<dd>Yes.</dd>
</dl>
Pero la gente de los "microformatos" dicen que debe ser así:
Código HTML:
<ol>
<li><cite>Costello</cite>
<blockquote><p>Well then who's on first?</p></blockquote></li>
<li><cite>Abbott</cite>
<blockquote><p>Yes.</p></blockquote></li>
</ol>
Y me parece un poco "raro", así que no sé.