From: Thibaut Cuvelier Date: Tue, 10 Jan 2023 23:26:28 +0000 (+0100) Subject: InsetTabular LyXHTML: fix wrong escape. X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=fb70f89983c8ca3d263ce6e73f058c3fb2f41c8f;p=features.git InsetTabular LyXHTML: fix wrong escape. --- diff --git a/src/insets/InsetTabular.cpp b/src/insets/InsetTabular.cpp index 1ec96da115..163f162aa7 100644 --- a/src/insets/InsetTabular.cpp +++ b/src/insets/InsetTabular.cpp @@ -3677,7 +3677,7 @@ std::string Tabular::getHAlignAsCssAttribute(idx_type cell) const // experimental. // https://www.w3.org/TR/css-text-4/#character-alignment Language const *lang = buffer().paragraphs().front().getParLanguage(buffer().params()); - return "text-align: '" + to_utf8(lang->decimalSeparator()) + "'"; + return "text-align: \"" + to_utf8(lang->decimalSeparator()) + "\""; } default: return "text-align: center";