X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/0303ee9d38ee338b8d98f86d748ce41f70845137..9201c5810622e27a19de7e331046108d7110c46b:/modules/visualEditor.transformations.js diff --git a/modules/visualEditor.transformations.js b/modules/visualEditor.transformations.js index 725aaea..57049e7 100644 --- a/modules/visualEditor.transformations.js +++ b/modules/visualEditor.transformations.js @@ -11,7 +11,6 @@ if(typeof module !== 'undefined' && module.exports) { var inner = $(xml).clone(); var toret = $('
'); toret.append(inner); - toret.find('metadata').remove(); var toBlock = ['div', 'document', 'section', 'header']; var toInline = ['aside', 'span']; @@ -20,8 +19,10 @@ if(typeof module !== 'undefined' && module.exports) { tagName = tagName.toLowerCase(); console.log('running ' + tagName); toret.find(tagName).replaceWith(function() { - var toret = $('
').attr('wlxml-tag', tagName); var currentTag = $(this); + if(currentTag.attr('wlxml-tag')) + return; + var toret = $('
').attr('wlxml-tag', tagName); if(currentTag.attr('class')) toret.attr('wlxml-class', currentTag.attr('class').replace(/\./g, '-')); toret.append(currentTag.contents()); @@ -33,6 +34,8 @@ if(typeof module !== 'undefined' && module.exports) { tagName = tagName.toLowerCase(); toret.find(tagName).replaceWith(function() { var currentTag = $(this); + if(currentTag.attr('wlxml-tag')) + return; var toret = $('').attr('wlxml-tag', tagName); if(currentTag.attr('class')) toret.attr('wlxml-class', currentTag.attr('class').replace(/\./g, '-')); @@ -75,12 +78,13 @@ if(typeof module !== 'undefined' && module.exports) { return toret; }); - var meta = $(''); + var meta = $('\n'); _.each(_.keys(documentDescription.metadata), function(key) { - meta.append($('' + documentDescription.metadata[key] + '')); + meta.append('\n\t' + documentDescription.metadata[key] + ''); }); + meta.append('\n'); - toret.find('document').prepend(meta); + toret.find('metadata').replaceWith(meta); return toret.html();