mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
Fix bug #8741
This commit is contained in:
parent
137fd291c2
commit
f393e6d219
@ -378,6 +378,12 @@ docstring convertLaTeXCommands(docstring const & str)
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (ch == '~') {
|
||||||
|
ret += ' ';
|
||||||
|
val = val.substr(1);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (ch == '$') {
|
if (ch == '$') {
|
||||||
ret += ch;
|
ret += ch;
|
||||||
val = val.substr(1);
|
val = val.substr(1);
|
||||||
|
Loading…
Reference in New Issue
Block a user