aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2025-03-13 22:40:41 +0100
committerGravatar GitHub <noreply@github.com> 2025-03-13 22:40:41 +0100
commita7361a3e7cd335c8932deba88fe60e8f673c2d40 (patch)
treebb4c007188d54897210f2a0539c2df0f438fb069 /docs
parentdf545b513b1c43e54da5b023bf3fe01bf36ad013 (diff)
Implement JSON string concatenation with & operator (#7414)
Inspired by [JSONata syntax](https://docs.jsonata.org/expressions). fix https://github.com/FreshRSS/FreshRSS/issues/6565
Diffstat (limited to 'docs')
-rw-r--r--docs/en/users/11_website_scraping.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/en/users/11_website_scraping.md b/docs/en/users/11_website_scraping.md
index f725280ea..a5704b81b 100644
--- a/docs/en/users/11_website_scraping.md
+++ b/docs/en/users/11_website_scraping.md
@@ -50,6 +50,8 @@ and the link would be `links[1]`.
It is a similar syntax to the JavaScript way to access JSON: `object.object.array[2].property`.
+Support string concatenation with a syntax like: `meta.title & " some text"` using single-quotes or double-quotes.
+
## Tips & tricks
- [Timezone of date](https://github.com/FreshRSS/FreshRSS/discussions/5483)