diff options
| -rw-r--r-- | docs/docs/14-Guides/02-search-query-language.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/docs/14-Guides/02-search-query-language.md b/docs/docs/14-Guides/02-search-query-language.md index f45b7dc2..f7d79b1d 100644 --- a/docs/docs/14-Guides/02-search-query-language.md +++ b/docs/docs/14-Guides/02-search-query-language.md @@ -14,7 +14,7 @@ Hoarder provides a search query language to filter and find bookmarks. Here are Here's a comprehensive table of all supported qualifiers: | Qualifier | Description | Example Usage | -|----------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------| +| -------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------- | | `is:fav` | Favorited bookmarks | `is:fav` | | `is:archived` | Archived bookmarks | `-is:archived` | | `is:tagged` | Bookmarks that has one or more tags | `is:tagged` | @@ -27,6 +27,7 @@ Here's a comprehensive table of all supported qualifiers: | | Supports quoted strings for list names with spaces | `list:"to review"` | | `after:<date>` | Bookmarks created on or after date (YYYY-MM-DD) | `after:2023-01-01` | | `before:<date>` | Bookmarks created on or before date (YYYY-MM-DD) | `before:2023-12-31` | +| `feed:<name>` | Bookmarks imported from a particular rss feed | `feed:Hackernews` | | `age:<time-range>` | Match bookmarks based on how long ago they were created. Use `<` or `>` to indicate the maximum / minimum age of the bookmarks. <br> Supported units: `d` (days), `w` (weeks), `m` (months), `y` (years). | `age:<1d` `age:>2w` <br> `age:<6m` `age:>3y` | ### Examples |
