We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3b11f69 + 087eaac commit 8296d6bCopy full SHA for 8296d6b
toml.md
@@ -128,12 +128,13 @@ to use bare keys except when absolutely necessary.
128
```
129
130
A bare key must be non-empty, but an empty quoted key is allowed (though
131
-discouraged).
+discouraged). You cannot use multi-line strings to define quoted keys.
132
133
```toml
134
-= "no key name" # INVALID
135
-"" = "blank" # VALID but discouraged
136
-'' = 'blank' # VALID but discouraged
+= "no key name" # INVALID
+"""key""" = "not allowed" # INVALID
+"" = "blank" # VALID but discouraged
137
+'' = 'blank' # VALID but discouraged
138
139
140
**Dotted keys** are a sequence of bare or quoted keys joined with a dot. This
0 commit comments