lineBreak

A line break advances to the next line and indents to the current nesting level.

>>> Document("hello") + lineBreak + "world"
hello
world

A line break may be converted into a spaces if the document is PrettyPrintable.grouped and there is enough space.

>>> (Document("hello") + lineBreak + "world").grouped()
hello world