From: Richard Heck Date: Tue, 30 Mar 2010 22:51:11 +0000 (+0000) Subject: Simplify. X-Git-Tag: 2.0.0~3619 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=8cf5ff6fbf7ba229db407d33c179db50d8c73150;p=features.git Simplify. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33961 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/InsetMathScript.cpp b/src/mathed/InsetMathScript.cpp index e637e55b8c..6ce45d4b0a 100644 --- a/src/mathed/InsetMathScript.cpp +++ b/src/mathed/InsetMathScript.cpp @@ -655,8 +655,8 @@ void InsetMathScript::htmlize(HtmlStream & os) const if (u && d) os << MTag("span", "class='scripts'") - << MTag("span", "class='sup'") << up() << ETag("span") - << MTag("span", "class='sub'") << down() << ETag("span") + << MTag("span") << up() << ETag("span") + << MTag("span") << down() << ETag("span") << ETag("span"); else if (u) os << MTag("sup", "class='math'") << up() << ETag("sup"); @@ -778,8 +778,7 @@ void InsetMathScript::validate(LaTeXFeatures & features) const if (features.runparams().flavor == OutputParams::HTML) features.addPreambleSnippet("");