[Libreoffice-commits] core.git: swext/mediawiki

Julien Nabet serval2412 at yahoo.fr
Wed Jun 7 05:14:14 UTC 2017


 swext/mediawiki/src/filter/odt2mediawiki.xsl |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8a400cfa468655142103f18f722adf1d5cbda9c7
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Tue Jun 6 23:15:20 2017 +0200

    tdf#98888: mediawiki inserts redundant emptylines in <ref>
    
    There's a newline in case of heading, table or bibliography following text:p
    ok but only if we're not in text:note node
    
    Change-Id: I71172751a51e29abdd770e758d27b1bc8f15cb0d
    Reviewed-on: https://gerrit.libreoffice.org/38470
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

diff --git a/swext/mediawiki/src/filter/odt2mediawiki.xsl b/swext/mediawiki/src/filter/odt2mediawiki.xsl
index 1b41b712cf5e..bf186ef6723a 100644
--- a/swext/mediawiki/src/filter/odt2mediawiki.xsl
+++ b/swext/mediawiki/src/filter/odt2mediawiki.xsl
@@ -874,7 +874,7 @@
 				</otherwise>
 			</choose>
  		</when>
- 		<when test="boolean(./following::*[1]/self::text:h) or boolean(./following::*[1]/self::table:table) or boolean(./following::*[1]/self::text:bibliography)">
+		<when test="not(boolean(ancestor::text:note)) and (boolean(./following::*[1]/self::text:h) or boolean(./following::*[1]/self::table:table) or boolean(./following::*[1]/self::text:bibliography))">
  			<!-- Newline before following heading or table. -->
  			<value-of select="$NL"/>
  			<value-of select="$NL"/>


More information about the Libreoffice-commits mailing list