Fix multiline string stability (#1287)

This commit is contained in:
Islon Scherer
2025-11-03 17:41:43 +01:00
committed by GitHub
parent 40c88930c5
commit 4226c21a42
3 changed files with 30 additions and 1 deletions

View File

@@ -47,3 +47,12 @@ quux {
"""
}
obj {
data {
["bar"] = """
foo
"""
}
}

View File

@@ -51,3 +51,13 @@ quux {
"""
}
obj {
data {
["bar"] =
"""
foo
"""
}
}