Merge branch 'master' into with-dvcs
authorRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Fri, 19 Aug 2011 11:24:53 +0000 (13:24 +0200)
committerRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Fri, 19 Aug 2011 11:24:53 +0000 (13:24 +0200)
redakcja/static/js/wiki/xslt.js

index 4f562a2..ff36666 100644 (file)
@@ -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('&', '&amp;').replace('<', '&lt;');
                                break;
             case COMMENT_NODE:
                 self.result += text_buffer;