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
worldContent copied to clipboard
>>> (Document("hello") + forcedLineBreak + "world").grouped()
hello
worldContent copied to clipboard