summaryrefslogtreecommitdiff
path: root/site
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2025-09-08 13:56:54 -0400
committerpommicket <pommicket@gmail.com>2025-09-08 13:56:54 -0400
commitf4f568d6426d2caa4117df95601f20598f690345 (patch)
tree63a1299bcef7d6a0f9e8fdeb39a8e088e0e92b26 /site
parentb3fd7c6de341644616a5f67be36b256686032f37 (diff)
Clarify lists
Diffstat (limited to 'site')
-rw-r--r--site/spec.html10
1 files changed, 8 insertions, 2 deletions
diff --git a/site/spec.html b/site/spec.html
index 9435812..ed34d5c 100644
--- a/site/spec.html
+++ b/site/spec.html
@@ -303,8 +303,8 @@ time = 35&nbsp;min
<p>
Although POM does not have a way of specially designating a value as being a list,
there is a recommended syntax for encoding them. Specifically, a value can be treated as a list
- by first splitting it into comma-delimited parts (treating <code>\,</code> as a literal comma
- in a list entry), then removing any accepted-spaces surrounding list entries.
+ by first splitting it into comma-delimited parts, treating <code>\,</code> as a literal comma
+ in a list entry and <code>\\</code> as a literal backslash, then removing any accepted-spaces surrounding list entries.
</p>
<p>
List entries may be empty, but if the last entry in a list is empty, it is removed
@@ -349,6 +349,12 @@ time = 35&nbsp;min
<td><code></code></td>
<td><code></code></td>
</tr>
+ <tr>
+ <td><code>escapees = \\,\a,\,</code></td>
+ <td><code>\</code></td>
+ <td><code>\a</code></td>
+ <td><code>,</code></td>
+ </tr>
</tbody>
</table>