git.sr.ht/~pingoo/stdx@v0.0.0-20240218134121-094174641f6e/toml/internal/toml-test/tests/valid/string/raw-multiline.toml (about)

     1  # Single ' should be allowed.
     2  oneline = '''This string has a ' quote character.'''
     3  
     4  # A newline immediately following the opening delimiter will be trimmed.
     5  firstnl = '''
     6  This string has a ' quote character.'''
     7  
     8  # All other whitespace and newline characters remain intact.
     9  multiline = '''
    10  This string
    11  has ' a quote character
    12  and more than
    13  one newline
    14  in it.'''