PR Description
Fixes exact search behavior:
exact: true
matches only when the entire property value (not just a token/word) matches the search term, case-insensitively."First Note.md"
will not match "first"
with exact: true
).Distinguishes between property-value and token-level exactness:
exact: true
→ matches the whole property value.exactToken: true
→ matches individual tokens/words exactly.Adds/clarifies documentation and code comments:
exact
and exactToken
in both code and types.How this solves the issue:
exact: true
now get results only when the property value is an exact match, as expected.Solves - #866 /claim #866
Luffy
@luffy-orf
OramaSearch
@oramasearch