table-scope-chain-inline-open-cell

With the closer omitted the last cell's inline context is open, so the chain walks past Cell to the last attr-bearing inline

§4.8 · source

Input

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

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:
        - key: class
          value:
            - b
  attributes:
    - key: class
      value:
        - c