table-simple

Pipe table with no header separator; all rows are type Row; columns default to start alignment

§4.8 · source

Input

| Cell A | Cell B |
| Cell C | Cell D |

Output AST

- type: Table
  rows:
    - type: Row
      children:
        - type: Cell
          row: 0
          column: 0
          children:
            - type: Text
              value: Cell A
        - type: Cell
          row: 0
          column: 1
          children:
            - type: Text
              value: Cell B
    - type: Row
      children:
        - type: Cell
          row: 1
          column: 0
          children:
            - type: Text
              value: Cell C
        - type: Cell
          row: 1
          column: 1
          children:
            - type: Text
              value: Cell D
  columns:
    - type: Column
    - type: Column