More font tags.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38217 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2011-04-03 00:03:10 +00:00
parent 68b0a984dd
commit 8165e63acf

View File

@ -145,7 +145,8 @@ docstring cleanAttr(docstring const & str)
bool isFontTag(string const & s)
{
return s == "em" || s == "strong"; // others?
// others?
return s == "em" || s == "strong" || s == "i" || s == "b";
}