Fix search issue for words inside Guillemets (« ») without spaces

This commit is contained in:
inv-hareesh 2025-02-07 08:59:36 +05:30
parent 103a8a8e8e
commit d938565839

View File

@ -16,7 +16,7 @@ class SearchIndex
/**
* A list of delimiter characters used to break-up parsed content into terms for indexing.
*/
public static string $delimiters = " \n\t.,!?:;()[]{}<>`'\"";
public static string $delimiters = " \n\t.,!?:;()[]{}<>`'\"«»";
public function __construct(
protected EntityProvider $entityProvider