filter/source/xslt/export/wordml/ooo2wordml_list.xsl | 3 +++ 1 file changed, 3 insertions(+)
New commits: commit 2995a95d8efa727ea53b06323c0b2bdc52e1aed0 Author: Julien Nabet <[email protected]> AuthorDate: Mon Oct 22 23:01:25 2018 +0200 Commit: Julien Nabet <[email protected]> CommitDate: Tue Oct 23 07:18:29 2018 +0200 tdf#120795: fix ooo2wordml_list.xsl syntax See errors in comments from tracker Regression from: https://cgit.freedesktop.org/libreoffice/core/commit/?id=1501df419ea4d40358d705a281fd9662088ba51e Change-Id: I9bbf970ac2b8cbf8fcc448f0847f61e8606797c7 Reviewed-on: https://gerrit.libreoffice.org/62205 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> diff --git a/filter/source/xslt/export/wordml/ooo2wordml_list.xsl b/filter/source/xslt/export/wordml/ooo2wordml_list.xsl index e3c9614d6e06..67337bc4eab3 100644 --- a/filter/source/xslt/export/wordml/ooo2wordml_list.xsl +++ b/filter/source/xslt/export/wordml/ooo2wordml_list.xsl @@ -228,12 +228,15 @@ <xsl:when test="$number-format = 'I'"> <!-- nfcUCRoman: Uppercase roman --> <w:nfc w:val="1"/> + </xsl:when> <xsl:when test="$number-format = '1st'"> <!-- nfcUCOrdinal: Ordinal indicator --> <w:nfc w:val="5"/> + </xsl:when> <xsl:when test="$number-format = 'One'"> <!-- nfcCardText: Cardinal --> <w:nfc w:val="6"/> + </xsl:when> <xsl:when test="$number-format = 'First'"> <!-- nfcOrdText: Ordinal --> <w:nfc w:val="7"/> _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
