Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add stop-words.json #31

Merged
merged 3 commits into from Nov 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 5 additions & 3 deletions specification.txt
Expand Up @@ -2373,9 +2373,11 @@ items is performed by:
is capitalized. The case of words in mixed or uppercase stays the same.

In both cases, stop words are lowercased, unless they are the first or last word
in the string, or follow a colon. The stop words are "a", "an", "and", "as",
"at", "but", "by", "down", "for", "from", "in", "into", "nor", "of", "on",
"onto", "or", "over", "so", "the", "till", "to", "up", "via", "with", and "yet".
in the string, or follow a colon. The stop words are listed in the file
`stop-words.json
<https://raw.github.com/citation-style-language/documentation/master/stop-words.json>`_.
bwiernik marked this conversation as resolved.
Show resolved Hide resolved
Hyphenated word parts are treated as distinct words (e.g., "two-thirds" becomes
"Two-Thirds").

Non-English Items
'''''''''''''''''
Expand Down
121 changes: 121 additions & 0 deletions stop-words.json
@@ -0,0 +1,121 @@
{
"stop-words": [
"a",
"according to",
"across",
"afore",
"after",
"against",
"ahead of",
"along",
"alongside",
"amid",
"amidst",
"among",
"amongst",
"an",
"and",
"anenst",
"apart from",
"apropos",
"apud",
"around",
"as",
"as regards",
"aside",
"astride",
"at",
"athwart",
"atop",
"back to",
"barring",
"because of",
"before",
"behind",
"below",
"beneath",
"beside",
"besides",
"between",
"beyond",
"but",
"by",
"c",
"ca",
"circa",
"close to",
"d'",
"de",
"despite",
"down",
"due to",
"during",
"et",
"except",
"far from",
"for",
"forenenst",
"from",
"given",
"in",
"inside",
"instead of",
"into",
"lest",
"like",
"modulo",
"near",
"next",
"nor",
"notwithstanding",
"of",
"off",
"on",
"onto",
"or",
"out",
"outside of",
"over",
"per",
"plus",
"prior to",
"pro",
"pursuant to",
"qua",
"rather than",
"regardless of",
"sans",
"since",
"so",
"such as",
"than",
"that of",
"the",
"through",
"throughout",
"thru",
"thruout",
"till",
"to",
"toward",
"towards",
"under",
"underneath",
"until",
"unto",
"up",
"upon",
"v.",
"van",
"versus",
"via",
"vis-à-vis",
"von",
"vs.",
"where as",
"with",
"within",
"without",
"yet"
]
}