paragraph-textbreak

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

§4.1

Input

First line\
second line

Output AST

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