Add more punctuation types to word list rules (#2907)

CORL-957

Co-authored-by: Kim Gardner <kgardnr@gmail.com>
This commit is contained in:
Nick Funk
2020-03-26 18:21:48 -04:00
committed by GitHub
co-authored by Kim Gardner
parent 2a9a5099dc
commit 071666e8b8
@@ -11,7 +11,7 @@ interface WordListRule {
const DefaultWordListRule: WordListRule = {
split: "[^\\w]",
punctuation: '[\\s"?!.]+',
punctuation: '[\\s"?!.¿¡`:;]+',
whitespace: "\\s+",
};