mark-nested-mixed

A nested Mark surrounded by text on both sides; inner whitespace is preserved

§5.10

Input

::a b ::c d:: e::

Output AST

- type: Paragraph
  children:
    - type: Mark
      name: a
      children:
        - type: Text
          value: "b "
        - type: Mark
          name: c
          children:
            - type: Text
              value: d
        - type: Text
          value: " e"