whitespace-adjacent-inlines

Two separate inline elements separated by a space — space is preserved as Text(" ") between them

§12.2

Input

** bb ** __ cc __

Output AST

- type: Paragraph
  children:
    - type: Strong
      children:
        - type: Text
          value: bb
    - type: Text
      value: " "
    - type: Emphasis
      children:
        - type: Text
          value: cc