28 lines
		
	
	
		
			557 B
		
	
	
	
		
			TOML
		
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			557 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'''
 | |
| 
 | |
| lit1 = '\'
 | |
| lit2 = '\\'
 | |
| lit3 = '\tricky\'
 | |
| 
 | |
| ml_lit1 = '''
 | |
| \'''
 | |
| ml_lit2 = '''\
 | |
| \'''
 | |
| ml_lit3 = '''\
 | |
| tricky\
 | |
| '''
 |