summaryrefslogtreecommitdiff
path: root/swext
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2014-02-22 09:06:05 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-03-21 11:21:01 +0000
commit895c13faf15b4ebf45be23c461f49a8ab0fd4e09 (patch)
treeebe6fc7d38d8347a55ceaad08430b4ffc5b33e33 /swext
parent76ac4d0e2c34d3fd2ba9cc7825c7cff25d463c1d (diff)
Resolves: fdo#75308 Asterisk at the beginning of Paragraph without "Nowiki"
The fix of fdo#74875 brings a huge regression since nowiki must be used With this patch, fdo#74875 is still ok hopefully. Change-Id: Ic6ed34630b40b09ab4f63166cbb1985b6313d168 Reviewed-on: https://gerrit.libreoffice.org/8167 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'swext')
-rw-r--r--swext/mediawiki/src/filter/odt2mediawiki.xsl21
1 files changed, 6 insertions, 15 deletions
diff --git a/swext/mediawiki/src/filter/odt2mediawiki.xsl b/swext/mediawiki/src/filter/odt2mediawiki.xsl
index 1b14aa19e96a..64474b334ea2 100644
--- a/swext/mediawiki/src/filter/odt2mediawiki.xsl
+++ b/swext/mediawiki/src/filter/odt2mediawiki.xsl
@@ -1129,21 +1129,12 @@
<param name="text"/>
<choose>
- <when test="contains($text, '&lt;') or contains($text, '[') or starts-with($text, '----') or starts-with($text, '=') or starts-with($text, '*') or starts-with($text, ';') or starts-with($text, '#')">
- <choose>
- <when test="contains($text, '&lt;/nowiki&gt;')">
- <text>&lt;nowiki&gt;</text>
- <call-template name="render-escaped-text">
- <with-param name="text" select="$text"/>
- </call-template>
- <text>&lt;/nowiki&gt;</text>
- </when>
- <otherwise>
- <call-template name="render-encoded-text">
- <with-param name="text" select="$text"/>
- </call-template>
- </otherwise>
- </choose>
+ <when test="contains($text, '[[') or starts-with($text, '----') or starts-with($text, '=') or starts-with($text, '*') or starts-with($text, ';') or starts-with($text, '#')">
+ <text>&lt;nowiki&gt;</text>
+ <call-template name="render-encoded-text">
+ <with-param name="text" select="$text"/>
+ </call-template>
+ <text>&lt;/nowiki&gt;</text>
</when>
<otherwise>
<call-template name="render-encoded-text">