From e9938a0cabd76cc860f3653ca77b5a55ef238b8e Mon Sep 17 00:00:00 2001
From: "M. Taylor Saotome-Westlake" <ultimatelyuntruethought@gmail.com>
Date: Sun, 1 Sep 2019 22:49:17 -0700
Subject: [PATCH] CSS workaround for Pygments bug (Python 3 can too lex Unicode
 variables)

---
 theme/static/css/pygment.css | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/theme/static/css/pygment.css b/theme/static/css/pygment.css
index 594b0fa..bd928bc 100644
--- a/theme/static/css/pygment.css
+++ b/theme/static/css/pygment.css
@@ -6,7 +6,11 @@ color:#408090;
 font-style:italic;
 }
 .err {
-border:1px solid #FF0000;
+    /* Pygments (https://bitbucket.org/birkenfeld/pygments-main/) is counting */
+    /* Greek letters as an error?! I may want to write a patch for this and   */
+    /* email it upstream (or create a Bitbucket account if I really have to). */
+    /* In the meantime, don't style it. */
+    /* border:1px solid #FF0000; */
 }
 .k {
 color:#007020;
-- 
2.17.1