summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2025-09-13 23:21:23 -0400
committerpommicket <pommicket@gmail.com>2025-09-13 23:21:23 -0400
commit1fd2aa61e093301363c3828bce149c616bc531c2 (patch)
tree769f94dc9be4c760ac00f4cffc021158163ab454
parent35f4c5470e4a2229f435139513202c1c97dd03bf (diff)
Clarify quoted value section
-rw-r--r--site/spec.html17
1 files changed, 10 insertions, 7 deletions
diff --git a/site/spec.html b/site/spec.html
index 9f03fe0..158c48a 100644
--- a/site/spec.html
+++ b/site/spec.html
@@ -245,17 +245,20 @@ time = 35&nbsp;min
</li>
<li>
If <i>c</i> is <code>"</code> (U+0022 QUOTATION MARK) or <code>`</code> (U+0060 GRAVE ACCENT),
- the value is <i>quoted</i>, and spans from the first character after <i>c</i>
- to the next unescaped instance of <i>c</i> in the file (which may be on a different line).
- In this case,
+ the value is <i>quoted</i>. In this case,
<ol>
<li>
- Escape sequences are processed as described below.
+ The value spans from the first character after <i>c</i>
+ to (but not including) the next unescaped instance of
+ <i>c</i> in the file (which may be on a different line).
</li>
<li>
- Following the closing instance of <i>c</i>, there must be no characters other
- than accepted-spaces until the next line feed or the end of the file;
- otherwise an error occurs.
+ Escape sequences in the value are replaced as described below.
+ </li>
+ <li>
+ After the closing <i>c</i>, there may be any number of accepted-spaces,
+ then a line feed or the end of the file must follow;
+ otherwise, an error occurs.
</li>
</ol>
</li>