From: Radek Czajka Date: Fri, 19 Aug 2011 11:24:53 +0000 (+0200) Subject: Merge branch 'master' into with-dvcs X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/fdd62169ba22c4c1be2f2306b5339eadd74ffb6d?hp=4c48c47d0b84e516114c16ee191359166e93a51c Merge branch 'master' into with-dvcs --- diff --git a/redakcja/static/js/wiki/xslt.js b/redakcja/static/js/wiki/xslt.js index 4f562a2b..ff36666f 100644 --- a/redakcja/static/js/wiki/xslt.js +++ b/redakcja/static/js/wiki/xslt.js @@ -253,7 +253,7 @@ HTMLSerializer.prototype.serialize = function(rootElement, stripOuter) break; case TEXT_NODE: self.result += text_buffer; - text_buffer = token.node.nodeValue; + text_buffer = token.node.nodeValue.replace('&', '&').replace('<', '<'); break; case COMMENT_NODE: self.result += text_buffer;