The workhorse tokenizer. It splits each string on whitespace into a vector of
words, the tokens joinery matches on. It almost always follows
normalize_text(), which strips punctuation and case first so the split is
clean: name ~ normalize_text() + word_tokens().
Details
Set min_nchar to drop very short tokens (single initials, stray letters)
that match too easily and add noise.
See also
normalize_text(), the usual preceding step;
filter_stopwords() to drop common words by name.
Other token generators:
generate_ngrams(),
numeric_tokens()
