diff --git a/app.py b/app.py
index 82a095e2ec87f7374ea8594af775a195cfb3a1b9..b6a9153c0180b4d8e24730309769d16f23993bbf 100644
--- a/app.py
+++ b/app.py
@@ -38,7 +38,10 @@ def normalize_utf8(s):
 
 # Render the template with compatibility detection.
 def render_template_c(tmpl, **kwargs):
-    text_browsers = ['w3m', 'Lynx', 'ELinks', 'Links', 'URL/Emacs', 'Emacs']
+    text_browsers = ['w3m', 'Lynx', 'ELinks', 'Links', 'URL/Emacs', 'Emacs',
+        'Mozilla/5.0 (compatible; hjdicks)', # abaco, mothra, etc
+
+    ]
     ua = request.headers.get('User-Agent')
 
     for text_ua in text_browsers: