Skip to content

Latest commit

 

History

History
27 lines (24 loc) · 424 Bytes

table-child.md

File metadata and controls

27 lines (24 loc) · 424 Bytes

table-child

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/>.

Example

Before transformation:

<table>
  <row>
    <cell/>
  </row>
  <p>text</p>
  <row/>
</table>

After transformation:

<table>
  <row>
    <cell/>
  </row>
  <fw>text</fw>
  <row/>
</table>