diff --git a/site/css/main.scss b/site/css/main.scss index 3314a76..139af9e 100644 --- a/site/css/main.scss +++ b/site/css/main.scss @@ -110,7 +110,7 @@ article { // Markdown decorations @media screen and (min-width: 768px) { - a[data-link] { + a { text-decoration: none; &::before { content: "["; } &::after { content: "](" attr(data-link) ")"; word-wrap: break-word; } @@ -120,7 +120,11 @@ article { font-size: 0.75em; } } - a:not([data-link]) { text-decoration: underline; } + a[data-no-link-decoration] { + text-decoration: underline; + &::before { content: ""; } + &::after { content: ""; } + } sup.footnote-ref > a::before, sup.footnote-ref > a::after, a.footnote-backref::before, a.footnote-backref::after { diff --git a/site/posts/2020-06-05-algorithmic-bias.md b/site/posts/2020-06-05-algorithmic-bias.md index 20098a8..568eb4e 100644 --- a/site/posts/2020-06-05-algorithmic-bias.md +++ b/site/posts/2020-06-05-algorithmic-bias.md @@ -11,7 +11,7 @@ This is what algorithmic bias looks like. **Algorithms are not neutral.**[^1]
YouTube thumbnail of an MKBHD video -
A screenshot of the thumbnail for a YouTube video from MKBHD titled "Reflecting on the Color of My Skin".
+
A screenshot of the thumbnail for a YouTube video from MKBHD titled "Reflecting on the Color of My Skin".
[^1]: "Algorithm" is a word here used not in the purely computer science sense, but to mean a element of software which operates in a black box, often with a machine learning component, with little or no human supervision, input, or control.