mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 02:28:35 +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);
|
||||
if (c == ' ' && (style.free_spacing || runparams.free_spacing))
|
||||
xs << XMLStream::ESCAPE_NONE << " ";
|
||||
else if (c == '\'')
|
||||
xs << XMLStream::ESCAPE_NONE << "’";
|
||||
else
|
||||
xs << c;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user