table-multiline-basic

Minimal multiline table: +- opener followed by content rows; single logical row; cells are Block[]

§4.8

Input

+-
| Alpha | Beta |

Output AST

- type: Table
  kind: multiline
  rows:
    - type: Row
      children:
        - type: Cell
          row: 0
          column: 0
          children:
            - type: Paragraph
              children:
                - type: Text
                  value: Alpha
        - type: Cell
          row: 0
          column: 1
          children:
            - type: Paragraph
              children:
                - type: Text
                  value: Beta
  columns:
    - type: Column
    - type: Column