aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-09-13 21:37:56 +0100
committerGitHub <noreply@github.com>2025-09-13 21:37:56 +0100
commita92ada7727b2596414aafe204e5001eb066569cb (patch)
tree73e289791f83135dfa2f5cecc6fa1c4019679238 /docs
parent3bae3aad9a62dbf2cc9a0038c90ea992166cc336 (diff)
downloadkarakeep-a92ada7727b2596414aafe204e5001eb066569cb.tar.zst
feat(search): add title search qualifier (#1940)
* fix(search): include link titles in title matcher * docs(search): add title qualifier * docs: remove title qualifier from v0.27 guide
Diffstat (limited to 'docs')
-rw-r--r--docs/docs/14-guides/02-search-query-language.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/docs/14-guides/02-search-query-language.md b/docs/docs/14-guides/02-search-query-language.md
index 55e32b98..6ca0a401 100644
--- a/docs/docs/14-guides/02-search-query-language.md
+++ b/docs/docs/14-guides/02-search-query-language.md
@@ -21,6 +21,8 @@ Here's a comprehensive table of all supported qualifiers:
| `is:inlist` | Bookmarks that are in one or more lists | `is:inlist` |
| `is:link`, `is:text`, `is:media` | Bookmarks that are of type link, text or media | `is:link` |
| `url:<value>` | Match bookmarks with URL substring | `url:example.com` |
+| `title:<value>` | Match bookmarks with title substring | `title:example` |
+| | Supports quoted strings for titles with spaces | `title:"my title"` |
| `#<tag>` | Match bookmarks with specific tag | `#important` |
| | Supports quoted strings for tags with spaces | `#"work in progress"` |
| `list:<name>` | Match bookmarks in specific list | `list:reading` |
@@ -41,6 +43,8 @@ is:archived and (list:reading or #work)
# Find bookmarks that are not tagged or not in any list
-is:tagged or -is:inlist
+# Find bookmarks with "React" in the title
+title:React
```
## Combining Conditions