16 lines
448 B
TOML
16 lines
448 B
TOML
|
# Make sure that quotes inside multiline strings are allowed, including right
|
||
|
# after the opening '''/""" and before the closing '''/"""
|
||
|
|
||
|
lit_one = ''''one quote''''
|
||
|
lit_two = '''''two quotes'''''
|
||
|
lit_one_space = ''' 'one quote' '''
|
||
|
lit_two_space = ''' ''two quotes'' '''
|
||
|
|
||
|
one = """"one quote""""
|
||
|
two = """""two quotes"""""
|
||
|
one_space = """ "one quote" """
|
||
|
two_space = """ ""two quotes"" """
|
||
|
|
||
|
mismatch1 = """aaa'''bbb"""
|
||
|
mismatch2 = '''aaa"""bbb'''
|