diff options
| author | 2025-04-01 23:55:39 +0800 | |
|---|---|---|
| committer | 2025-04-01 17:55:39 +0200 | |
| commit | 89b0e1168ed1dca562757655cf7de31483218592 (patch) | |
| tree | d1a2bac8b05a8d62af7017103f63c2cbeb229bde /docs/en | |
| parent | 3336631a846c2e34f55b2ecb76b46cd68228486f (diff) | |
Update 10_filter.md to provide detailed explanations of the time syntax. (#7464)
* Update 10_filter.md to provide detailed explanations of the time syntax.
* Update 03_Main_view.md to provide detailed explanations of the time syntax.
* Reworded
---------
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'docs/en')
| -rw-r--r-- | docs/en/users/10_filter.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/en/users/10_filter.md b/docs/en/users/10_filter.md index 7ca1aefff..7d37e312e 100644 --- a/docs/en/users/10_filter.md +++ b/docs/en/users/10_filter.md @@ -84,6 +84,11 @@ You can use the search field to further refine results: * `date:PT30M/` (past thirty minutes) * `date:PT90S/` (past ninety seconds) * `date:P1DT1H/` (past one day and one hour) + * From the oldest until some time before now: + * `!date:P1M` (older than one month before now, using a negation) + * Note: the syntax ~~`date:/P1M`~~ is not supported + * Date constraints may be combined: + * `date:P1Y !date:P1M` (from one year before now until one month before now) * by date of publication, using the same format: `pubdate:<date-interval>` * by custom label ID `L:12` or multiple label IDs: `L:12,13,14` or with any label: `L:*` * by custom label name `label:label`, `label:"my label"` or any label name from a list (*or*): `labels:"my label,my other label"` |
