Shaun Curran
My feedback
2 results found
-
282 votes
“Place Video from URL” option has been restored in the latest InDesign update – version 15.1.
Please update InDesign to use the feature.
—
Adobe InDesign teamShaun Curran supported this idea · -
2 votes
An error occurred while saving the comment Shaun Curran shared this idea ·
InDesign CC2019+2020
Create a table
Convert first row to Header row type
Convert last row to Footer row type
Export to HTML
you get (simplified)
<table>
<thead>
<td>
<p>Text</p>
</td>
</thead>
<tfoot>
<td>
<p>Text</p>
</td>
</foot>
<tbody>
<td>
<p>Text</p>
</td>
</tbody>
The HTML spec specifies that tfoot should appear AFTER tbody.
Also the <td> in <thead> should be <th>.