]> git.lyx.org Git - lyx.git/blobdiff - src/output_xhtml.cpp
Fix ChkTeX error reporting (#8639)
[lyx.git] / src / output_xhtml.cpp
index 84fc0cd2c8e21eba33a1225b798770d7c7949e3d..d3386ee1a55bb86b40bd1e2297d6839351448232 100644 (file)
@@ -147,8 +147,9 @@ docstring cleanAttr(docstring const & str)
 
 bool isFontTag(string const & s)
 {
-       // others?
-       return s == "em" || s == "strong" || s == "i" || s == "b";
+       return s == "em" || s == "strong" || s == "i" || s == "b"
+           || s == "dfn" || s == "kbd" || s == "var" || s == "samp"
+           || s == "del" || s == "u";
 }