Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


This is a draft, to be enhanced and cleaned up...
Infowarning
titleIMPORTANT
Article Being Developed

For clarification of anything below, please contact Liquid State Support.

Simple tables

Tables defined in an XML import must be have a value element containing HTML in a CDATA section.

...

Code Block
titleExample of a simple Table Field element
<table field_type="example-field-type">
   <value format="html"><![CDATA[
      <table>
            <caption>Table caption text</caption>
            <thead>
                <tr>
                    <th>Column 1</th>
                    <th>Column 2</th>
                    <th>Column 3</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td rowspan="3">Row 1 Cell 1</td>
                </tr>
                <tr>
                    <td scope="row">Row 2 Cell 2</td>
                    <td>Row 2 Cell 3</td>
                </tr>
            </tbody>
   </table>]]>
   </value>
</table>

Column spans

...

Warning
titleArticle Being Developed

Column span documentation is incomplete. If you require information on column spans in imported content, please contact Liquid State Support.