mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 11:58:20 -07:00
21 lines
423 B
Plaintext
21 lines
423 B
Plaintext
"""foobar"""
|
|
"""fo"o
|
|
#bar
|
|
baz"""
|
|
'''foobar'''
|
|
'''fo'o
|
|
#bar
|
|
baz'''
|
|
|
|
----------------------------------------------------
|
|
|
|
[
|
|
["triple-quoted-string", "\"\"\"foobar\"\"\""],
|
|
["triple-quoted-string", "\"\"\"fo\"o\r\n#bar\r\nbaz\"\"\""],
|
|
["triple-quoted-string", "'''foobar'''"],
|
|
["triple-quoted-string", "'''fo'o\r\n#bar\r\nbaz'''"]
|
|
]
|
|
|
|
----------------------------------------------------
|
|
|
|
Checks for triple-quoted strings. |