From: Richard Kimberly Heck Date: Thu, 27 Jul 2023 04:09:26 +0000 (-0400) Subject: Fix bug #8741 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=f393e6d219c07990875ea56a09421aa77e43daf4;p=features.git Fix bug #8741 --- diff --git a/src/BiblioInfo.cpp b/src/BiblioInfo.cpp index 1464e7088e..29ade833ce 100644 --- a/src/BiblioInfo.cpp +++ b/src/BiblioInfo.cpp @@ -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);