Quote:
Originally Posted by Walnut356
It's possible to fix it by hand, but a little tedious if there's a lot of them.
|
If all the tables have the same structure, a regex to find the
tfoot before the
tbody would allow you to fix the entire book at once.
Just wrap the
<tfoot>.*</tfoot> and
<tbody>.*</tbody> in capture groups (parenthesis for many regex flavors, but it can vary) and then replace with
\2\1.