# NOTE: this file includes some literal tab characters. multiline_empty_one = """""" # A newline immediately following the opening delimiter will be trimmed. multiline_empty_two = """ """ # \ at the end of line trims newlines as well; note that last \ is followed by # two spaces, which are ignored. multiline_empty_three = """\ """ multiline_empty_four = """\ \ \ """ equivalent_one = "The quick brown fox jumps over the lazy dog." equivalent_two = """ The quick brown \ fox jumps over \ the lazy dog.""" equivalent_three = """\ The quick brown \ fox jumps over \ the lazy dog.\ """ whitespace-after-bs = """\ The quick brown \ fox jumps over \ the lazy dog.\ """ only-ignore-first = """ Here are \ two lines of text. And \ another two. """ no-space = """a\ b""" # Has tab character. keep-ws-before = """a \ b""" escape-bs-1 = """a \\ b""" escape-bs-2 = """a \\\ b""" escape-bs-3 = """a \\\\ b"""