diff --git a/helios/models.py b/helios/models.py
index b1ce74d13e76d1dbe46d07edd5d020855b856302..c59a08969eb868ba04f586d78399dcf051e8a1e8 100644
--- a/helios/models.py
+++ b/helios/models.py
@@ -192,7 +192,7 @@ class Election(HeliosModel):
 
   @property
   def description_bleached(self):
-    return bleach.clean(self.description, tags = bleach.ALLOWED_TAGS + ['p', 'h4', 'h5', 'h3', 'h2', 'br'])
+    return bleach.clean(self.description, tags = bleach.ALLOWED_TAGS + ['p', 'h4', 'h5', 'h3', 'h2', 'br', 'u'])
 
   @classmethod
   def get_featured(cls):