<- Back to shtanton's homepage
aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCharlie Stanton <charlie@shtanton.xyz>2023-04-26 11:04:36 +0100
committerCharlie Stanton <charlie@shtanton.xyz>2023-04-26 11:04:36 +0100
commit48017049f23d3f213fc6e1313f34526d0bba4489 (patch)
treeb363e53f5112589e0cbbd2e1e5e60c6f912ab65c /README.md
parente5965749d17d5a70f92fdc981f863e85b7543838 (diff)
downloadstred-go-48017049f23d3f213fc6e1313f34526d0bba4489.tar
Update subex , literal to no longer include terminals
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index c93f48c..f3e7f61 100644
--- a/README.md
+++ b/README.md
@@ -61,7 +61,7 @@ The simplest subexes are literals. These just copy directly from the input to th
| Syntax | Description |
| --- | --- |
| `.` | Copy across any single atom unchanged |
-| `,` | Copy across any single value unchanged (will copy a whole string) |
+| `,` | Copy across any single JSON value (not `{`, `}`, `[` or `]` tokens) unchanged (will copy a whole string). Equivalent to `` `null`|?|%|# `` |
| `?` | Copy across any single boolean atom |
| `%` | Copy across any single number |
| `_` | Copy across a single unicode codepoint inside a string |