From fb70f89983c8ca3d263ce6e73f058c3fb2f41c8f Mon Sep 17 00:00:00 2001 From: Thibaut Cuvelier Date: Wed, 11 Jan 2023 00:26:28 +0100 Subject: [PATCH] InsetTabular LyXHTML: fix wrong escape. --- src/insets/InsetTabular.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; -- 2.39.5