X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/3185249361cacf28b88b00093f8b262795c8fa3c..9201c5810622e27a19de7e331046108d7110c46b:/modules/visualEditor.transformations.js diff --git a/modules/visualEditor.transformations.js b/modules/visualEditor.transformations.js index cfb5877..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,16 +19,28 @@ if(typeof module !== 'undefined' && module.exports) { tagName = tagName.toLowerCase(); console.log('running ' + tagName); toret.find(tagName).replaceWith(function() { - var suffix = tagName !== 'div' ? tagName : 'block'; - return $('').addClass('rng rng-' + suffix).append($(this).contents()); + 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()); + return toret; }); }); toInline.forEach(function(tagName) { tagName = tagName.toLowerCase(); toret.find(tagName).replaceWith(function() { - var node = this; - return $('').addClass('rng rng-' + tagName).append($(this).contents()); + 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()); + return toret; }); }); return toret.children(); @@ -59,16 +70,21 @@ if(typeof module !== 'undefined' && module.exports) { toret.find('div, span').replaceWith(function() { var div = $(this); - var tagName = div.attr('class').split('rng-')[1]; - return $('<'+tagName+'>').append(div.contents()); + var tagName = div.attr('wlxml-tag'); + var toret = $('<'+tagName+'>'); + if(div.attr('wlxml-class')) + toret.attr('class', div.attr('wlxml-class').replace(/-/g, '.')) + toret.append(div.contents()); + return toret; }); - var meta = $('