Multiline String Literal Formatting in Swift

If using the code block editor for Swift, single-line strings color just fine:

let sillyString = "πŸŽ‰πŸŽ‰πŸŽ‰"

However, if using multiline String Literals, the code does not color correctly, only two quotation marks color red (orange?)

let sillierString = """
\(sillyString)
Wait... this doesn't work...
Darn.
\(sillyString)
"""

Funnily, the coloring worked here…