table-pipe-plus-row-ignored

A + row between pipe rows is ignored entirely — colons included: no Header marking, no alignment, table not interrupted

§4.8

Input

| A | B |
+:--+--:+
| C | D |

Output AST

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