mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 21:21:32 +00:00
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:
parent
ce1566de1b
commit
91be848e33
@ -302,13 +302,13 @@ docstring InsetSpecialChar::xhtml(XHTMLStream & xs, OutputParams const &) const
|
||||
xs << '.';
|
||||
break;
|
||||
case LDOTS:
|
||||
xs << "…";
|
||||
xs << XHTMLStream::NextRaw() << "…";
|
||||
break;
|
||||
case MENU_SEPARATOR:
|
||||
xs << "⇒";
|
||||
xs << XHTMLStream::NextRaw() << "⇒";
|
||||
break;
|
||||
case SLASH:
|
||||
xs << "⁄";
|
||||
xs << XHTMLStream::NextRaw() << "⁄";
|
||||
break;
|
||||
case NOBREAKDASH:
|
||||
xs << '-';
|
||||
|
Loading…
Reference in New Issue
Block a user