Семантические многопоточные комментарии HTML5

При работе с цепочками комментариев в блоге в HTML5, ожидаете ли вы, что цепочки комментариев будут вложенными

? Или вы считаете даже вложенные комментарии просто еще одним
в рамках сообщения в блоге, а цепочка - это проблема отображения?

Пример A:

<section>
<article>
...blog post...
<section id="comments">
<article id="comment_1">...comment 1...</article>
<article id="comment_2">
   ...comment 2...
   <article id="comment_3">...comment 3 in response to comment 2...</article>
   <article id="comment_4">
       ...comment 4 in response to comment 2...
       <article id="comment_4">...comment 5 in response to comment 4...</article>
   </article>
</article>
<article id="comment_6">...comment 6...</article>
</section>
</article>
</section>

Пример B (с теоретическим rel = "parent"):

<section>
<article>
...blog post...
<section id="comments">
<article id="comment_1">...comment 1...</article>
<article id="comment_2">...comment 2...</article>
<article id="comment_3" rel="comment_2" class="indent-1">...comment 3 in response to comment 2...</article>
<article id="comment_4" rel="comment_2" class="indent-1">...comment 4 in response to comment 2...</article>
<article id="comment_5" rel="comment_4" class="indent-2">...comment 5 in response to comment 4...</article>
<article id="comment_6">...comment 6...</article>
</section>
</article>
</section>

Изменить:

Чтобы уточнить, Кажется, что каждый из комментариев, перечисленных как статья в рекомендациях по спецификации, вызван тем, что это статья в подразделе основной статьи из-за ее релевантности. И цепочный комментарий по-прежнему является продолжением этого обсуждения.

11
задан scragz 28 January 2011 в 05:59
поделиться