mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-24 13:48:59 +00:00
Special handing of space characters during text output.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32709 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
3915c2d01a
commit
812c3204bd
@ -172,6 +172,11 @@ void InsetMathChar::mathmlize(MathStream & ms) const
|
||||
case '<': entity = "<"; break;
|
||||
case '>': entity = ">"; break;
|
||||
case '&': entity = "&"; break;
|
||||
case ' ':
|
||||
if (!ms.inText())
|
||||
break;
|
||||
entity = " ";
|
||||
break;
|
||||
default: break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user