Any idea what the proper containing markup would be to indicate a transcript for a video? Thinking accessibility for folks with disabilities but also perhaps search engine recognition of the association between the text and the video.
A:
Definition lists are good for this:
<dl class="transcript">
<dt>Person's name...</dt>
<dd>What was said</dd>
<dt>Person's name...</dt>
<dd>What was said</dd>
<dt>Person's name...</dt>
<dd>What was said</dd>
</dl>
Coronatus
2010-03-31 09:42:20