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