about summary refs log tree commit diff
path: root/filters/email-gravatar.py
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2014-01-15 13:39:54 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2014-01-15 14:43:02 +0100
commit8ae1d8b8fd0b097b10716d0d2d8acaadbd7a46f7 (patch)
treebb9bf7bf87e07f5d2a133d8448cc65f1a7b9b68b /filters/email-gravatar.py
parentemail-gravatar: do not scale icons up (diff)
downloadcgit-pink-8ae1d8b8fd0b097b10716d0d2d8acaadbd7a46f7.tar.gz
cgit-pink-8ae1d8b8fd0b097b10716d0d2d8acaadbd7a46f7.zip
email-gravatar: fix html syntax issues
an attribute value specification must be an attribute value literal
unless SHORTTAG YES is specified
Diffstat (limited to '')
-rwxr-xr-xfilters/email-gravatar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/filters/email-gravatar.py b/filters/email-gravatar.py
index 88bc776..d70440e 100755
--- a/filters/email-gravatar.py
+++ b/filters/email-gravatar.py
@@ -36,4 +36,4 @@ sys.stdout = codecs.getwriter("utf-8")(sys.stdout.detach())
 md5 = hashlib.md5(email.encode()).hexdigest()
 text = sys.stdin.read().strip()
 
-print("<img src='//www.gravatar.com/avatar/" + md5 + "?s=13&amp;d=retro' width=13 height=13 alt='Gravatar' /> " + text)
+print("<img src='//www.gravatar.com/avatar/" + md5 + "?s=13&amp;d=retro' width='13' height='13' alt='Gravatar' /> " + text)
irl/commit/ui.c?h=2.0a&id=2faa73abd63d3373ba12e59427d948720188bfbf&follow=1'>Remove topic TODOJune McEnroe I played around with it and it doesn't look right unless there is only one channel listed in the status. 2019-02-22Add /znc commandJune McEnroe Only because ZNC tells you to use it and expects it to work. 2019-02-22Update status line after scrolling and term eventsJune McEnroe 2019-02-22Reorganize input.cJune McEnroe 2019-02-22Fix name of <raw> window in man pageJune McEnroe 2019-02-22Rename global tags with angle bracketsJune McEnroe 2019-02-22Show status window while connectingJune McEnroe 2019-02-22Reorganize UI code for the umpteenth timeJune McEnroe It's actually in a good state now, I think. 2019-02-21Replace "view" with "window"June McEnroe I think originally I didn't want to use the same word as curses WINDOW but it's really much clearer for the user if they're just called windows. UI code probably needs yet another rewrite though. Still feels messy. 2019-02-21Remove ROT13June McEnroe It's just not convenient when it can only do the whole line... 2019-02-21Clean up man pageJune McEnroe 2019-01-26Draw UI before connectingJune McEnroe Otherwise the "Traveling" message isn't visible while connecting. 2019-01-25Avoid unused variable warnings with getyxJune McEnroe 2019-01-25Add GNU/Linux build instructionsJune McEnroe