From 40fd302d4cf9380fb36109e29c13da69630c358e Mon Sep 17 00:00:00 2001
From: Kevin Garcia
Date: Thu, 30 Apr 2020 13:33:11 -0700
Subject: [PATCH 1/5] =?UTF-8?q?=E2=9E=95=20Add=20definitions=20for=20Hispa?=
=?UTF-8?q?nic,=20Latino=20and=20Latinx=20(#89)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
* Add definitions for Hispanic, Latino and Latinx
* Update hispanic, latino and latinx definitions to indicate their pan-ethnic connotations.
---
11ty/definitions/american.md | 4 ++++
11ty/definitions/hispanic.md | 12 ++++++++++--
11ty/definitions/latino.md | 15 +++++++++++++++
11ty/definitions/latinx.md | 17 +++++++++++++++--
4 files changed, 44 insertions(+), 4 deletions(-)
create mode 100644 11ty/definitions/latino.md
diff --git a/11ty/definitions/american.md b/11ty/definitions/american.md
index 099c3692..9d5fdf68 100644
--- a/11ty/definitions/american.md
+++ b/11ty/definitions/american.md
@@ -9,6 +9,10 @@ sub_terms:
full_title: Asian American
- text: Black
full_title: Black American
+ - text: Hispanic
+ full_title: Hispanic American
- text: Indigenous
full_title: Indigenous American
+ - text: Latin
+ full_title: Latin American
---
diff --git a/11ty/definitions/hispanic.md b/11ty/definitions/hispanic.md
index 5eaa6bd8..df7531b3 100644
--- a/11ty/definitions/hispanic.md
+++ b/11ty/definitions/hispanic.md
@@ -1,5 +1,13 @@
---
title: Hispanic
slug: hispanic
-defined: false
----
\ No newline at end of file
+defined: true
+reading:
+ - text: "Remezcla: Hispanic vs. Latino vs. Latinx: A Brief History of How These Words Originated"
+ href: https://remezcla.com/features/culture/latino-vs-hispanic-vs-latinx-how-these-words-originated/
+---
+
+Serves as an umbrella term for people of Spanish, or Spanish-speaking ancestry. Hispanic is considered a pan-ethnic term, and does not provide context for someone's race or country of origin.
+
+#### Note
+People who self-identify as Hispanic may also self-identify as Chicano/Chicana, [Latino/Latina](#/latino), or [Latinx](#/latinx), but don't assume that they do. When in doubt, ask for individual preferences.
\ No newline at end of file
diff --git a/11ty/definitions/latino.md b/11ty/definitions/latino.md
new file mode 100644
index 00000000..3d7b5faf
--- /dev/null
+++ b/11ty/definitions/latino.md
@@ -0,0 +1,15 @@
+---
+title: Latin American/Latino/Latina
+slug: latino
+defined: true
+reading:
+ - text: "Remezcla: Hispanic vs. Latino vs. Latinx: A Brief History of How These Words Originated"
+ href: https://remezcla.com/features/culture/latino-vs-hispanic-vs-latinx-how-these-words-originated/
+---
+
+Serves as an umbrella term for people of Latin American ancestry. Latino (and Latina) are inherently gendered terms due to Spanish's gendered language. Latino is considered a pan-ethnic term that does not provide context for someone's language, country of origin, or race.
+
+Also can be written in gender neutral forms of [Latinx](#/latinx), or Latin@s. When in doubt, default to Latino, and ask individual parties their preference, if possible.
+
+#### Note
+People who self-identify as Latin American or Latino/Latina may also self-identify as Chicano/Chicana, [Hispanic](#/hispanic), or [Latinx](#/latinx).
\ No newline at end of file
diff --git a/11ty/definitions/latinx.md b/11ty/definitions/latinx.md
index 07dc93a4..d63ee943 100644
--- a/11ty/definitions/latinx.md
+++ b/11ty/definitions/latinx.md
@@ -1,5 +1,18 @@
---
title: Latinx
slug: latinx
-defined: false
----
\ No newline at end of file
+defined: true
+reading:
+ - text: "Remezcla: Hispanic vs. Latino vs. Latinx: A Brief History of How These Words Originated"
+ href: https://remezcla.com/features/culture/latino-vs-hispanic-vs-latinx-how-these-words-originated/
+ - text: "Latino, Latinx, Latine. The grammatical gender neutral in Spanish"
+ href: https://medium.com/@puentera/latino-latinx-latine-a3b19e0dbc1c
+---
+
+Latinx arose as a gender-neutral alternative to the gendered [Latino](#/latino)/Latina in the United States.
+
+This is a term that is seeing expanded usage and evolution among academic circles. Latinx is considered a pan-ethnic term that does not provide context for someone's language, country of origin, or race.
+
+#### Note
+People who self-identify as Latinx may also self-identify as Chicano/Chicana, [Hispanic](#/hispanic), or [Latin American](/#latino)
+
From beb2f5db69d81fffa92b294f5663624f12783de0 Mon Sep 17 00:00:00 2001
From: Conlin Durbin
Date: Fri, 1 May 2020 22:06:27 -0400
Subject: [PATCH 2/5] =?UTF-8?q?=F0=9F=8E=A8=20Enhance=20:focus=20style=20f?=
=?UTF-8?q?or=20a11y?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
* Adding link changes with text-decoration and background
* Update assets/css/base/_a.scss
Co-Authored-By: EJ Mason
* Add SCSS variable
Co-authored-by: Conlin Durbin
Co-authored-by: EJ Mason
Co-authored-by: Tatiana Mac
---
.tool-versions | 1 +
assets/css/abstracts/_variables.scss | 2 ++
assets/css/base/_a.scss | 12 +++++++-----
assets/css/structures/_grid.scss | 5 +++++
4 files changed, 15 insertions(+), 5 deletions(-)
create mode 100644 .tool-versions
diff --git a/.tool-versions b/.tool-versions
new file mode 100644
index 00000000..47f71e70
--- /dev/null
+++ b/.tool-versions
@@ -0,0 +1 @@
+nodejs 12.16.1
diff --git a/assets/css/abstracts/_variables.scss b/assets/css/abstracts/_variables.scss
index a6d802d5..ba8ea795 100644
--- a/assets/css/abstracts/_variables.scss
+++ b/assets/css/abstracts/_variables.scss
@@ -12,3 +12,5 @@ $light-grey: hsl(0, 0%, 93.3%); // for backgrounds only
$browser-context: 16;
+$lt-background-color: $pink;
+
diff --git a/assets/css/base/_a.scss b/assets/css/base/_a.scss
index 58460314..b475a7d8 100644
--- a/assets/css/base/_a.scss
+++ b/assets/css/base/_a.scss
@@ -1,16 +1,18 @@
a {
- border-bottom: $dark-grey solid 0.1em;
color: $black;
font-family: $ext-sans;
margin: 1rem 0;
- text-decoration: none;
+ text-decoration-color: $dark-grey;
+ text-decoration-line: underline;
+ text-decoration-thickness: 0.1em;
&:hover,
&:focus {
- border-bottom: $primary-color solid 0.1rem;
+ text-decoration-color: $primary-color;
}
&:focus {
- outline: pxToRem(3) solid $primary-color;
- outline-offset: pxToRem(5);
+ background-color: $lt-background-color;
+ color: $black;
+ outline: 0;
}
}
diff --git a/assets/css/structures/_grid.scss b/assets/css/structures/_grid.scss
index 3c775725..d8a394ad 100644
--- a/assets/css/structures/_grid.scss
+++ b/assets/css/structures/_grid.scss
@@ -64,5 +64,10 @@
a {
color: white;
+
+ &:focus {
+ background-color: $lt-background-color;
+ color: $black;
+ }
}
}
From 48ebe70b991df1c2f3dcad5325d150ed0e3dd358 Mon Sep 17 00:00:00 2001
From: Sarah Higley
Date: Fri, 1 May 2020 19:12:17 -0700
Subject: [PATCH 3/5] =?UTF-8?q?=F0=9F=90=9B=20Add=20headings,=20label=20li?=
=?UTF-8?q?sts,=20remove=20aria-labels=20for=20a11y=20(#109)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Co-authored-by: Tatiana Mac
---
.eleventy.js | 4 ++--
11ty/_includes/components/table-of-content-item.njk | 2 +-
11ty/_includes/components/table-of-content.njk | 7 ++++---
11ty/index.njk | 2 +-
assets/css/base/_typography.scss | 2 ++
5 files changed, 10 insertions(+), 7 deletions(-)
diff --git a/.eleventy.js b/.eleventy.js
index 3eabd905..25f8c61f 100644
--- a/.eleventy.js
+++ b/.eleventy.js
@@ -27,10 +27,10 @@ module.exports = function(config) {
if (existingDefinition) {
return `${subTermData.text}`;
+ )}">${subTermData.text}`;
}
- return `${subTermData.text}`;
+ return `${subTermData.text}`;
});
// just a debug filter to lazily inspect the content of anything in a template
diff --git a/11ty/_includes/components/table-of-content-item.njk b/11ty/_includes/components/table-of-content-item.njk
index 6359c1e6..f9136784 100644
--- a/11ty/_includes/components/table-of-content-item.njk
+++ b/11ty/_includes/components/table-of-content-item.njk
@@ -7,7 +7,7 @@
{{ definition.data.flag.text }}
{% endif %}
{%- if definition.data.sub_terms -%}
-
diff --git a/assets/css/base/_typography.scss b/assets/css/base/_typography.scss
index da1b6149..fb110d19 100644
--- a/assets/css/base/_typography.scss
+++ b/assets/css/base/_typography.scss
@@ -62,9 +62,11 @@ p {
.subtitle {
font-family: $ext-sans;
+ font-size: 1.25rem;
font-weight: $regular;
grid-column: span 2;
letter-spacing: 0.1;
+ margin: .75rem 0;
}
.small {
From 6f9a8320048d628d31fa5b630781634ca32fb00d Mon Sep 17 00:00:00 2001
From: jess
Date: Fri, 1 May 2020 19:25:40 -0700
Subject: [PATCH 4/5] =?UTF-8?q?=F0=9F=93=8E=20Added=20financial=20contribu?=
=?UTF-8?q?tors=20to=20the=20README=20(#107)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Co-authored-by: Tatiana Mac
---
README.md | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/README.md b/README.md
index 160fd20d..b7cc76ab 100644
--- a/README.md
+++ b/README.md
@@ -48,3 +48,33 @@ We love encouraging first-time contributors and have labelled [good first issues
- Maintain OSS nature for non-profit and other OSS uses, but charge for corporate uses.
- Ensure that dictionary includes nuances and expresses that not everyone ascribes to terms exactly as they are; illustrate and articulate those nuances wherever possible.
- Accessibility, inclusion, and performance are at the core of this project.
+
+## Contributors
+
+### Code Contributors
+
+This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)].
+
+
+### Financial Contributors
+
+Become a financial contributor and help us sustain our community. [[Contribute](https://opencollective.com/SelfDefined/contribute)]
+
+#### Individuals
+
+
+
+#### Organizations
+
+Support this project with your organization. Your logo will show up here with a link to your website. [[Contribute](https://opencollective.com/SelfDefined/contribute)]
+
+
+
+
+
+
+
+
+
+
+
From 8983cdccf35d5287786801336e45873e6a3427c7 Mon Sep 17 00:00:00 2001
From: Tatiana Mac
Date: Fri, 1 May 2020 19:31:27 -0700
Subject: [PATCH 5/5] Opencollective opencollective (#110)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
* Added financial contributors to the README
* ➕ Added Asian terms and subterms, Orientalism
Co-authored-by: Jess
---
11ty/definitions/asian-american.md | 14 ++++++++++++++
11ty/definitions/asian.md | 2 ++
11ty/definitions/east-asian.md | 15 +++++++++++++++
11ty/definitions/oriental.md | 25 +++++++++++++++++++++++++
11ty/definitions/south-asian.md | 15 +++++++++++++++
11ty/definitions/southeast-asian.md | 17 +++++++++++++++++
6 files changed, 88 insertions(+)
create mode 100644 11ty/definitions/asian-american.md
create mode 100644 11ty/definitions/east-asian.md
create mode 100644 11ty/definitions/oriental.md
create mode 100644 11ty/definitions/south-asian.md
create mode 100644 11ty/definitions/southeast-asian.md
diff --git a/11ty/definitions/asian-american.md b/11ty/definitions/asian-american.md
new file mode 100644
index 00000000..c7df7702
--- /dev/null
+++ b/11ty/definitions/asian-american.md
@@ -0,0 +1,14 @@
+---
+title: Asian-American
+slug: asian-american
+defined: true
+speech: noun
+skip_in_table_of_content: true
+---
+umbrella term for people of Asian descent (immigrant or natural born) who live in and/or are from the United States.
+
+## Considerations
+As many countries and cultures are enveloped within this umbrella term, try to be as specific as possible. When speaking of Vietnamese-Americans or Chinese-Americans, use those terms instead. Be careful to not assume that every English-speaking Asian person you meet in the U.S. is necessarily Asian-American. (For one, they could be Asian-Canadian or have any other number of nationalities. In general, be mindful of accuracy and confirm with relevant parties.
+
+## Note
+Can be shortened to AsAm or AA by those who identify as Asian American. Be mindful of context and always spell out on first reference. If you aren't Asian-American, it's best to keep it spelled out.
diff --git a/11ty/definitions/asian.md b/11ty/definitions/asian.md
index faa26f40..45cdf73e 100644
--- a/11ty/definitions/asian.md
+++ b/11ty/definitions/asian.md
@@ -3,6 +3,8 @@ title: Asian
slug: asian
defined: false
sub_terms:
+ - text: -American
+ full_title: Asian-American
- text: East
full_title: East Asian
- text: South
diff --git a/11ty/definitions/east-asian.md b/11ty/definitions/east-asian.md
new file mode 100644
index 00000000..79867ea9
--- /dev/null
+++ b/11ty/definitions/east-asian.md
@@ -0,0 +1,15 @@
+---
+title: East Asian
+slug: east-asian
+defined: true
+speech: noun
+skip_in_table_of_content: true
+---
+umbrella term for people of East Asian descent. East Asian countries include China, Hong Kong, Macau, Mongolia, North Korea, South Korea, Japan, and Taiwan
+
+## Considerations
+As many countries and cultures are enveloped within this umbrella term, try to be as specific as possible. If you know or can ask someone if they are Japanese, for example, that's better as it's more specific.
+
+Do not assume someone is East Asian because of certain physical characteristics or language knowledge.
+
+Additionally, these Asian subregions are important to differentiate, as some regions were most fraught to imperialism and colonisation than others.
diff --git a/11ty/definitions/oriental.md b/11ty/definitions/oriental.md
new file mode 100644
index 00000000..32f1c450
--- /dev/null
+++ b/11ty/definitions/oriental.md
@@ -0,0 +1,25 @@
+---
+title: Oriental
+slug: oriental
+defined: true
+flag:
+ text: 'racist term'
+ level: avoid
+speech: noun or adj.
+alt_words:
+ - Asian or Asian-American when you're uncertain. However, when possible, be as specific as possible. If you know or can ask someone's ethnicity, it's better to be specific such as Korean-Canadian or Vietnamese-American.
+reading:
+ - text: "ThoughtCo: Avoid these five racial terms"
+ href: https://www.thoughtco.com/avoid-these-five-racial-terms-2834959
+ - text: "'Oriental': Rugs, Not People"
+ href: https://www.npr.org/templates/story/story.php?storyId=112465167?storyId=112465167
+---
+
+## Issues
+The word Oriental is rooted in the concept of Orientalism, which is strongly articulated by Edward Said in eponymous book, _Orientalism_. In his book, Said illustrates the Orient as being the observed "other" or "foreigner," whereas the Occident (or the West) is centred as the default. All Eastern culture is prescribed through this imperialist, pejorative lens, where it is deemed as strange, exotic, dirty, effeminate, and weak. By presenting Eastern culture through this lens, Western culture may present set itself up for dominance through cultural hegemony and colonisation.
+
+Calling someone Oriental reinforces those hegemonic ideas even if you're unaware of its historical context.
+
+## Impact
+
+By continuing use of this term, we are perpetuating anti-Asian sentiments and the centralisation of Western (i.e., Occidental) imperialism. Diverse Asian people, nations, and cultures are flattened into one caricature of itself, which is dehumanising.
\ No newline at end of file
diff --git a/11ty/definitions/south-asian.md b/11ty/definitions/south-asian.md
new file mode 100644
index 00000000..ae3608d8
--- /dev/null
+++ b/11ty/definitions/south-asian.md
@@ -0,0 +1,15 @@
+---
+title: South Asian
+slug: south-asian
+defined: true
+speech: noun
+skip_in_table_of_content: true
+---
+umbrella term for people of South Asian descent. South Asian countries include Afghanistan, Bangladesh, Bhutan, Maldives, Nepal, India, Pakistan, and Sri Lanka.
+
+## Considerations
+As many countries and cultures are enveloped within this umbrella term, try to be as specific as possible. If you know or can ask someone if they are Nepalese, for example, that's better as it's more specific.
+
+Do not assume someone is South Asian because of certain physical characteristics or language knowledge.
+
+Additionally, these Asian subregions are important to differentiate as some regions were most fraught to imperialism and colonisation than others.
diff --git a/11ty/definitions/southeast-asian.md b/11ty/definitions/southeast-asian.md
new file mode 100644
index 00000000..1ed79828
--- /dev/null
+++ b/11ty/definitions/southeast-asian.md
@@ -0,0 +1,17 @@
+---
+title: Southeast Asian
+slug: southeast-asian
+defined: true
+speech: noun
+skip_in_table_of_content: true
+---
+umbrella term for people of Southeast Asian descent. South Asian countries include two sub-regions:
+- **Mainland Southeast Asia:** Cambodia, Laos, Myanmar, Peninsular Malaysia, Thailand and Vietnam.
+- **Maritime Southeast Asia:** Andaman and Nicobar Islands (India), Ashmore and Cartier Islands (Australia), Brunei, Christmas Island (Australia), the Cocos (Keeling) Islands (Australia), East Malaysia, East Timor, Indonesia (except Western New Guinea, which is considered a part of the Australian continent), the Philippines and Singapore.
+
+## Considerations
+As many countries and cultures are enveloped within this umbrella term, try to be as specific as possible. If you know or can ask someone if they are Laotian, for example, that's better as it's more specific.
+
+Do not assume someone is Southeast Asian because of certain physical characteristics or language knowledge.
+
+Additionally, these Asian subregions are important to differentiate as some regions were most fraught to imperialism and colonisation than others.