table-multiline-multirow-cell

Two | lines between consecutive + rows form one logical row; cell content is soft-joined across lines

§4.8

Input

+--------------------+--------------------+
| First line col A   | First line col B   |
| Second line col A  | Second line col B  |
+--------------------+--------------------+

Output AST

- type: Table
  kind: multiline
  rows:
    - type: Row
      children:
        - type: Cell
          row: 0
          column: 0
          children:
            - type: Paragraph
              children:
                - type: Text
                  value: First line col A Second line col A
        - type: Cell
          row: 0
          column: 1
          children:
            - type: Paragraph
              children:
                - type: Text
                  value: First line col B Second line col B
  columns:
    - type: Column
    - type: Column