mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 03:11:59 +00:00
Export ' as ’ in HTML
This is similar to what LaTeX does in its output. See the (long) discussion in ticket #11244.
This commit is contained in:
parent
2203078111
commit
ad3e6c69b2
@ -4012,6 +4012,8 @@ docstring Paragraph::simpleLyXHTMLOnePar(Buffer const & buf,
|
|||||||
runparams, i);
|
runparams, i);
|
||||||
if (c == ' ' && (style.free_spacing || runparams.free_spacing))
|
if (c == ' ' && (style.free_spacing || runparams.free_spacing))
|
||||||
xs << XMLStream::ESCAPE_NONE << " ";
|
xs << XMLStream::ESCAPE_NONE << " ";
|
||||||
|
else if (c == '\'')
|
||||||
|
xs << XMLStream::ESCAPE_NONE << "’";
|
||||||
else
|
else
|
||||||
xs << c;
|
xs << c;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user