line-break

Backslash as last character of a line produces a LineBreak node

§5.12 · source

Input

line one\
line two

Output AST

- type: Paragraph
  children:
    - type: Text
      value: line one
    - type: LineBreak
    - type: Text
      value: line two