Unterminated line continuation#

Entries with unterminated line continuations. Line continuations must end with a backslash (\) followed by a newline.

Before ❌

multiline=line1\

escape=this is backslash \

After ✅

multiline=line1\
line2

escape=this is backslash \\