You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thing = "The quick brown fox jumped over the lazy dog.";
another_thing = "The quick brown fox"
" jumped over the lazy dog.";
a_third_thing = "The quick" /* comment */ " brown fox " // another comment
"jumped over the lazy dog.";
First text thing validates fine.
Second one another_thing reports " jumped over the lazy dog." as invalid with error message:
Expected a terminator libconfig(768)
Third text reports the same error for " brown fox ".
The documention states that these should all be valid.
How can I help to make the syntax checking allow multiline versions.?
The text was updated successfully, but these errors were encountered:
First text
thing
validates fine.Second one
another_thing
reports" jumped over the lazy dog."
as invalid with error message:Third text reports the same error for
" brown fox "
.The documention states that these should all be valid.
How can I help to make the syntax checking allow multiline versions.?
The text was updated successfully, but these errors were encountered: