@velvetmonkey/vault-core 2.0.94 → 2.0.96
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/wikilinks.js +6 -0
- package/package.json +1 -1
package/dist/wikilinks.js
CHANGED
|
@@ -498,6 +498,12 @@ const SENTENCE_STARTER_WORDS = new Set([
|
|
|
498
498
|
'think', 'know', 'feel', 'seem', 'look', 'hear', 'watch', 'wait', 'work',
|
|
499
499
|
'start', 'stop', 'open', 'close', 'move', 'turn', 'bring', 'send', 'leave',
|
|
500
500
|
'meet', 'join', 'follow', 'include', 'consider', 'remember', 'forget',
|
|
501
|
+
// Pronouns, possessives, determiners — capitalized at sentence start but not proper nouns
|
|
502
|
+
'my', 'your', 'his', 'her', 'its', 'our', 'their',
|
|
503
|
+
'some', 'any', 'every', 'each', 'both', 'few', 'many', 'most',
|
|
504
|
+
// Common adjectives that precede proper nouns at sentence start
|
|
505
|
+
'poor', 'old', 'new', 'big', 'little', 'great', 'good', 'bad',
|
|
506
|
+
'first', 'last', 'next', 'other', 'more', 'just', 'very',
|
|
501
507
|
]);
|
|
502
508
|
/**
|
|
503
509
|
* Detect implicit entities in content using pattern matching
|
package/package.json
CHANGED