Hunspell word matching fix
All checks were successful
Build on Push and create Release on Tag / build (push) Successful in 1m6s

This commit is contained in:
MassiveBox 2025-10-05 19:18:00 +02:00
parent 922bdfbff8
commit 5bbf99b1e4
Signed by: massivebox
GPG key ID: 9B74D3A59181947D

View file

@ -15,7 +15,7 @@ export class ESpellChecker implements SpellChecker {
let suggestions: Suggestion[] = []
const regex = /[\w']+/g;
const regex = /[\p{L}']+/gu;
let match;
while ((match = regex.exec(text)) !== null) {