paragraph-linebreak

Backslash at end of line produces a LineBreak node; parsing continues on the next line

§4.1 · source

Input

First line\
second line

Output AST

- type: Paragraph
  children:
    - type: Text
      value: First line
    - type: LineBreak
    - type: Text
      value: second line