@@ -9,16 +9,83 @@ import { DEFAULT_CAPITALIZATIONS as DEFAULT_CAPITALIZATIONS_ } from "./capitaliz
99// Articles, conjunctions, and prepositions that stay lowercase mid-title
1010// (AP-style title casing). Sourced from the same set as `vercel/title`.
1111const SMALL_WORDS = new Set ( [
12- "a" , "an" , "the" , "aboard" , "about" , "above" , "across" , "after" , "against" , "along" ,
13- "amid" , "among" , "anti" , "around" , "as" , "at" , "before" , "behind" ,
14- "and" , "but" , "or" , "nor" , "for" , "yet" , "so" ,
15- "below" , "beneath" , "beside" , "besides" , "between" , "beyond" , "by" ,
16- "concerning" , "considering" , "despite" , "down" , "during" , "except" ,
17- "excepting" , "excluding" , "following" , "from" , "in" , "inside" , "into" ,
18- "like" , "minus" , "near" , "of" , "off" , "on" , "onto" , "opposite" , "over" ,
19- "past" , "per" , "plus" , "regarding" , "round" , "save" , "since" , "than" ,
20- "through" , "to" , "toward" , "towards" , "under" , "underneath" , "unlike" ,
21- "until" , "up" , "upon" , "versus" , "via" , "with" , "within" , "without" ,
12+ "a" ,
13+ "an" ,
14+ "the" ,
15+ "aboard" ,
16+ "about" ,
17+ "above" ,
18+ "across" ,
19+ "after" ,
20+ "against" ,
21+ "along" ,
22+ "amid" ,
23+ "among" ,
24+ "anti" ,
25+ "around" ,
26+ "as" ,
27+ "at" ,
28+ "before" ,
29+ "behind" ,
30+ "and" ,
31+ "but" ,
32+ "or" ,
33+ "nor" ,
34+ "for" ,
35+ "yet" ,
36+ "so" ,
37+ "below" ,
38+ "beneath" ,
39+ "beside" ,
40+ "besides" ,
41+ "between" ,
42+ "beyond" ,
43+ "by" ,
44+ "concerning" ,
45+ "considering" ,
46+ "despite" ,
47+ "down" ,
48+ "during" ,
49+ "except" ,
50+ "excepting" ,
51+ "excluding" ,
52+ "following" ,
53+ "from" ,
54+ "in" ,
55+ "inside" ,
56+ "into" ,
57+ "like" ,
58+ "minus" ,
59+ "near" ,
60+ "of" ,
61+ "off" ,
62+ "on" ,
63+ "onto" ,
64+ "opposite" ,
65+ "over" ,
66+ "past" ,
67+ "per" ,
68+ "plus" ,
69+ "regarding" ,
70+ "round" ,
71+ "save" ,
72+ "since" ,
73+ "than" ,
74+ "through" ,
75+ "to" ,
76+ "toward" ,
77+ "towards" ,
78+ "under" ,
79+ "underneath" ,
80+ "unlike" ,
81+ "until" ,
82+ "up" ,
83+ "upon" ,
84+ "versus" ,
85+ "via" ,
86+ "with" ,
87+ "within" ,
88+ "without" ,
2289] ) ;
2390
2491// Characters that ride along with an adjacent word but don't break it:
0 commit comments