Hello all,
I am a bit stumped with the <caption> tag used in a table.
My epub is v3.0
I am adding the <caption> tag as follows:
Spoiler:
PHP Code:
<table>
<caption>LSAT-560467-S</caption>
<caption>DATA TRANSCRIPT 463/511-001</caption>
<caption>SUBJECT SITE: 231.957 (North-eastern seaboard: CT, NY, NJ)</caption>
<thead>
<tr>
<th><p class="noindent">NO.</p></th>
<th><p class="noindent">TIME/EST</p></th>
<th><p class="noindent">LOC</p></th>
<th><p class="noindent">READING</p></th>
</tr>
</thead>
<tbody>
<tr>
<td><p class="noindent">1.</p></td>
<td><p class="noindent">18:03:48</p></td>
<td><p class="noindent">CT.</p></td>
<td><p class="noindent">Isolated energy surge/Source: UNKNOWN<br/>Type: UNKNOWN / Dur: 0.00:09</p></td>
</tr>
<tr>
<td><p class="noindent">2.</p></td>
<td><p class="noindent">18:03:58</p></td>
<td><p class="noindent">N.Y.</p></td>
<td><p class="noindent">Isolated energy surge/Source: UNKNOWN<br/>Type: UNKNOWN / Dur: 0.00:06</p></td>
</tr>
</tbody>
</table>
But when I run EPUBCheck v0.2.4 by Doitsu, I get the following error....
PHP Code:
p03c24.xhtml Line: 78 Col: 12 ERROR(RSC-005): Error while parsing file: element "caption" not allowed here; expected the element end-tag or element "colgroup", "script", "tbody", "template", "tfoot", "thead" or "tr"
I have been to six different sites, all showing the <caption> tag immediately below the <table> tag, so I don't understand why EPUBCheck throws an error.
https://developer.mozilla.org/en-US/...lement/caption
Can anybody see what the problem is?
Thank you