diff options
author | Olivier Hallot <olivier.hallot@libreoffice.org> | 2023-01-02 16:25:44 +0000 |
---|---|---|
committer | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | 2023-01-04 08:12:13 +0000 |
commit | a4310b27a37912daa02a104bcd8f834f9be66e13 (patch) | |
tree | 48c5a03f3edf1d65ab9667269912af1ed4281fae | |
parent | c2225b7c607a6718b0fbdd9da082fb9bf2921e68 (diff) |
tdf#148727, fix escaped characters
Change-Id: Ibbed83017fdae0841fdb022a97cf21ad6eba1089
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/144912
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
-rw-r--r-- | help3xsl/online_transform.xsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/help3xsl/online_transform.xsl b/help3xsl/online_transform.xsl index 3d6ba73877..811abb0b48 100644 --- a/help3xsl/online_transform.xsl +++ b/help3xsl/online_transform.xsl @@ -952,7 +952,7 @@ </xsl:when> <xsl:otherwise> - <xsl:value-of disable-output-escaping="yes" select="$string"/> + <xsl:value-of select="$string"/> </xsl:otherwise> </xsl:choose> |