Fix output for InsetSpecialChar. These shouldn't be escaped.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32224 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2009-11-28 20:37:01 +00:00
parent ce1566de1b
commit 91be848e33

View File

@ -302,13 +302,13 @@ docstring InsetSpecialChar::xhtml(XHTMLStream & xs, OutputParams const &) const
xs << '.';
break;
case LDOTS:
xs << "&hellip;";
xs << XHTMLStream::NextRaw() << "&hellip;";
break;
case MENU_SEPARATOR:
xs << "&rArr;";
xs << XHTMLStream::NextRaw() << "&rArr;";
break;
case SLASH:
xs << "&frasl;";
xs << XHTMLStream::NextRaw() << "&frasl;";
break;
case NOBREAKDASH:
xs << '-';