forcedLineBreak
Like lineBreak but always starts a new line. A forcedLineBreak is never removed or replaced, even when PrettyPrintable.grouped and there is plenty of space.
>>> Document("hello") + forcedLineBreak + "world"
hello
world
Content copied to clipboard
>>> (Document("hello") + forcedLineBreak + "world").grouped()
hello
world
Content copied to clipboard