text-break

Backslash as last character of a line produces a TextBreak node

§5.12

Input

line one\
line two

Output AST

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