]> git.lyx.org Git - features.git/commitdiff
Forgot to include "u" as a font tag.
authorRichard Heck <rgheck@lyx.org>
Wed, 27 Mar 2013 19:46:06 +0000 (15:46 -0400)
committerRichard Heck <rgheck@lyx.org>
Wed, 27 Mar 2013 19:46:06 +0000 (15:46 -0400)
src/output_xhtml.cpp

index 30eda975b4425825fd7fec2dbb0bc325aee19be7..d3386ee1a55bb86b40bd1e2297d6839351448232 100644 (file)
@@ -149,7 +149,7 @@ bool isFontTag(string const & s)
 {
        return s == "em" || s == "strong" || s == "i" || s == "b"
            || s == "dfn" || s == "kbd" || s == "var" || s == "samp"
-           || s == "del";
+           || s == "del" || s == "u";
 }