Change tags of <p/>
or <ab/>
elements that are direct children of <table/>
to <fw/>
.
N.B.: Use in combination with table-text to remove tails of invalid children of <table/>
.
Before transformation:
<table>
<row>
<cell/>
</row>
<p>text</p>
<row/>
</table>
After transformation:
<table>
<row>
<cell/>
</row>
<fw>text</fw>
<row/>
</table>