From 127617a6b45979c4634530c801346cd6f4e19051 Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Wed, 31 Jul 2019 11:03:11 -0400 Subject: [PATCH] =?utf8?q?write=20in=20=E2=80=9Cnormal=E2=80=9D=20capitali?= =?utf8?q?zation,=20but=20apply=20lowercase=20text-transform?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit after some thoughts, i think this is the best way to go about it. as much as i enjoy writing lowercase, others reading my site may not. this way, they’ll have the option to disable the lowercase transform using an addon like Stylish. there’s also the accessibility concern with screen readers. --- contact.html | 42 +++++++++++++++++++++--------------------- index.html | 46 +++++++++++++++++++++++----------------------- style.css | 2 ++ 3 files changed, 46 insertions(+), 44 deletions(-) diff --git a/contact.html b/contact.html index 6741c69..0de1de1 100644 --- a/contact.html +++ b/contact.html @@ -13,13 +13,13 @@

bandali's

-

contact info

+

Contact info

- email is by far my preferred method of communication. i may + Email is by far my preferred method of communication. I may be contacted at bandali at gnu dot org. - if you want to send me gpg-encrypted mail, you can use my + If you want to send me GPG-encrypted mail, you can use my public key with the fingerprint BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103.

@@ -27,7 +27,7 @@ - + - + - + - + @@ -56,26 +56,26 @@
ircIRC bandali on freenode and @@ -35,19 +35,19 @@
xmppXMPP bandali@member.fsf.org
matrixMatrix @bandali:matrix.org
fediverseFediverse @bandali@pleroma.site
-

elsewhere

+

Elsewhere

- you may also find me at a few other places online. stricken - through accounts are those i don’t use anymore, unless + You may also find me at a few other places online. Stricken + through accounts are those I don't use anymore, unless absolutely necessary.

diff --git a/index.html b/index.html index 2bdb4b8..c04a655 100644 --- a/index.html +++ b/index.html @@ -14,51 +14,51 @@

bandali's

-

corner on the interwebs

+

Corner on the interwebs

- hi, i'm + Hi, I'm amin bandali, + title="photo of bandali with rms wearing a “pay cash don’t be tracked” pin">Amin Bandali, often just bandali around the web.

-

academia

+

Academia

- i'm a graduate student at watform - at university of waterloo, supervised by - dr. nancy day. - my research at watform focuses on formal logic, model - checking, and verification. see my research interests link + I'm a graduate student at WatForm + at University of Waterloo, supervised by + Dr. Nancy Day. + My research at WatForm focuses on formal logic, model + checking, and verification. See my research interests link above for more details.

-

personal

+

Personal

- i’m a free software - and copyleft activist, - an fsf associate member, - and a gnu webmaster - and volunteer. i co-host the emacs.el podcast, - and i'm organizing emacsconf 2019 this fall. + I’m a Free Software + and Copyleft activist, + an FSF associate member, + and a GNU webmaster + and volunteer. I co-host the Emacs.el podcast, + and I'm organizing EmacsConf 2019 this fall.

diff --git a/style.css b/style.css index af0562d..baeed6b 100644 --- a/style.css +++ b/style.css @@ -5,6 +5,7 @@ article, aside, footer, header, nav, section { body { font-family: FreeSans, sans-serif; + text-transform: lowercase; line-height: 1.4; padding: 1em; } @@ -46,6 +47,7 @@ article h3 { code { font-size: 1.15em; + text-transform: none; } table td { -- 2.20.1