variable-basic

{{key}} produces a Variable node with the key string

§5.11 · source

Input

Hello {{title}}!

Output AST

- type: Paragraph
  children:
    - type: Text
      value: "Hello "
    - type: Variable
      key: title
    - type: Text
      value: "!"