I have found validating under HTML5, the validator is throwing up errors for using free text with an unordered list.
EG.
<ul>some free text
<li>1st list item</li>
<li>2nd list item</li>
</ul>
So I have replaced this free text within the 'ul' tag with a HTML5 'figure' tag.
EG.
<figure>
<figcaption>some free text</figcaption>
<ul>
<li>1st list item</li>
<li>2nd list item</li>
</ul>
</figure>
Would you agree that this is semantically correct, or should I be using something else?
Your input is appreciated.
1DMF