mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-04-12 16:08:08 +00:00
Fix search issue for words inside Guillemets (« ») without spaces
This commit is contained in:
parent
103a8a8e8e
commit
d938565839
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue