diff options
author | Alexandre Alapetite <alexandre@alapetite.fr> | 2025-03-24 14:08:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-24 14:08:43 +0100 |
commit | 9114b9a06a6ff668827c4b0fb68fb549d2c50470 (patch) | |
tree | 9dd5d20412e325b15fcc4bcb7fe5af442b94a598 /app/i18n/de | |
parent | b0a3ae1e7af2a1485439439463ceed3dc2057f65 (diff) | |
download | freshrss-9114b9a06a6ff668827c4b0fb68fb549d2c50470.tar.gz freshrss-9114b9a06a6ff668827c4b0fb68fb549d2c50470.zip |
Support multiple JSON fragments in HTML+XPath+JSON mode (#7369)
* Support multiple JSON fragments in HTML+XPath+JSON mode
fix https://github.com/FreshRSS/FreshRSS/discussions/7352#discussioncomment-12295475
E.g. HTML with one `<script type="application/ld+json">...</script>` per item.
* Better help messages
Diffstat (limited to 'app/i18n/de')
-rw-r--r-- | app/i18n/de/sub.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/i18n/de/sub.php b/app/i18n/de/sub.php index 3067b5efd..2a9f495c7 100644 --- a/app/i18n/de/sub.php +++ b/app/i18n/de/sub.php @@ -88,7 +88,7 @@ return array( '_' => 'HTML + XPath + JSON Punkt-Notation (JSON in HTML)', 'xpath' => array( '_' => 'XPath für JSON in HTML', - 'help' => 'Beispiel: <code>//script[@type="application/json"]</code>', + 'help' => 'Beispiel: <code>normalize-space(//script[@type="application/json"])</code> (single JSON)<br />or: <code>//script[@type="application/ld+json"]</code> (one JSON object per article)</code>', // DIRTY ), ), 'html_xpath' => array( |