attrs-class-merge

Multiple .classname tokens in one {} block are collected into a single class entry with string[] value

§6.1

Input

Hello {.foo .bar}

Output AST

- type: Paragraph
  children:
    - type: Text
      value: Hello
  attributes:
    - key: class
      value:
        - foo
        - bar