Skip to content

Latest commit

 

History

History
56 lines (53 loc) · 1012 Bytes

lonely-cell.md

File metadata and controls

56 lines (53 loc) · 1012 Bytes

lonely-cell

Find <cell/> elements that are outside of a <row/> element and wrap them in <row/> and <table/>, if necessary. Adjacent <cell/> elements will be added to the same <row/> element to avoid adding a new <row/> and <table/> for each solitary <cell/>. If the <cell/> element has a tail, it will be concatenated with its text content.

Example

Before transformation:

<div>
  <p>
    <table>
      <cell>text</cell>
    </table>
    <table>
      <cell>text2</cell>
      <cell>text3</cell>
    </table>
  </p>
  <cell/>
  <p>
    <cell>new table</cell>tail
  </p>
</div>

After transformation:

<div>
  <p>
    <table>
      <row>
        <cell>text</cell>
      </row>
    </table>
    <table>
      <row>
        <cell>text2</cell>
        <cell>text3</cell>
      </row>
    </table>
  </p>
  <table>
    <row>
      <cell/>
    </row>
  </table>
  <p>
    <table>
      <row>
        <cell>new table tail</cell>
      </row>
    </table>
  </p>
</div>