diff --git a/mbox2web b/mbox2web index ab91e7b..3f6f6c8 100755 --- a/mbox2web +++ b/mbox2web @@ -477,6 +477,10 @@ class TextEnrichedPart: # HTML used to have a "big" element, but that has been removed from HTML5 pre = "" post = "" + elif self.type == "underline": + # HTML5 redefined the meaning of "u", but I'm using it anyway + pre = "" + post = "" else: raise NotImplementedError("Unknown type " + self.type)