table-cell-inline-attrs-before-closer

A chain written before the closer is inside the cell's inline context, so it distributes through the cell's slots — the only slot being the last attr-bearing inline

§4.8

Input

| AA | **BB** {.a} |

Diagnostics

[]

Output AST

- type: Table
  rows:
    - type: Row
      children:
        - type: Cell
          children:
            - type: Text
              value: AA
        - type: Cell
          children:
            - type: Strong
              children:
                - type: Text
                  value: BB
              attributes:
                - key: class
                  value:
                    - a
      attributes: []
  attributes: []