Input
Hello {.foo .bar} Output AST
- type: Paragraph
children:
- type: Text
value: Hello
attributes:
- key: class
value:
- foo
- bar Multiple .classname tokens in one {} block are collected into a single class entry with string[] value
Input
Hello {.foo .bar} Output AST
- type: Paragraph
children:
- type: Text
value: Hello
attributes:
- key: class
value:
- foo
- bar