This commit is contained in:
Richard Kimberly Heck 2023-07-27 00:09:26 -04:00
parent 137fd291c2
commit f393e6d219

View File

@ -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);