🔍 Search Box Shortcut: Ctrl + K
Use Unix-like search command syntax.
For example, to search for articles containing both hello and world: 'hello 'world
Syntax Details:
- Space acts as a logical AND operator,
- Vertical bar (
|) acts as a logical OR operator.
To search for whitespace (escape whitespace), use double quotes. Example:'"hello world", to search for articles containing “hello world”.
| Syntax Example | Match Type | Description |
|---|---|---|
javascript | Fuzzy match | Items that fuzzy match javascript |
=scheme | Exact match | Items that are exactly scheme |
'python | Contains | Items that include python |
!ruby | Does not contain | Items that do not include ruby |
^java | Starts with specified chars | Content that starts with java |
!^erlang | Does not start with | Content that does not start with erlang |
.js$ | Ends with | Content that ends with .js |
!.go$ | Does not end with | Content that does not end with .go |
Written by HenryZ