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 7f19cf4 + 8296d6b commit 3085d25Copy full SHA for 3085d25
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