table-attrs-last-row

Last row: two trailing {} distribute to Table and Row; single {} goes to Table only; empty {} is no-op on Table

§4.8 · source

Input

| td1 | td2 | {.a}{.b}

Output AST

- type: Table
  rows:
    - type: Row
      children:
        - type: Cell
          children:
            - type: Text
              value: td1
        - type: Cell
          children:
            - type: Text
              value: td2
      attributes:
        - key: class
          value:
            - a
  attributes:
    - key: class
      value:
        - b