Typically on the front page of a blog, there are several recent blog posts, and each blog post is an <article>
. And usually blog comments are markuped using <article>
s, too.
My question is: Is it a good practice to put those <article>
s inside <li>
s? I used to do that because in my own interpretation those <article>
s together are presented in a way of a certain amount/quantity. So when it comes to listing a certain amount/quantity of elements, <ul>
and <ol>
are the best choices.
However, maybe I need to reconsider my interpretation because putting <article>
s inside <li>
s seems to be a misuse of <li>
. And I also want to take accessibility into account. I'm not sure if doing that causes confusions to assistive technologies or not.