X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/73894afa5c6ed0829890f129def7e85540e3366c..0303ee9d38ee338b8d98f86d748ce41f70845137:/modules/visualEditor.transformations.js diff --git a/modules/visualEditor.transformations.js b/modules/visualEditor.transformations.js index 2edf3d0..725aaea 100644 --- a/modules/visualEditor.transformations.js +++ b/modules/visualEditor.transformations.js @@ -20,11 +20,10 @@ if(typeof module !== 'undefined' && module.exports) { tagName = tagName.toLowerCase(); console.log('running ' + tagName); toret.find(tagName).replaceWith(function() { - var suffix = tagName !== 'div' ? tagName : 'block'; - var toret = $('
').attr('wlxml-tag', suffix); + var toret = $('').attr('wlxml-tag', tagName); var currentTag = $(this); if(currentTag.attr('class')) - toret.attr('wlxml-class', currentTag.attr('class')); + toret.attr('wlxml-class', currentTag.attr('class').replace(/\./g, '-')); toret.append(currentTag.contents()); return toret; }); @@ -36,7 +35,7 @@ if(typeof module !== 'undefined' && module.exports) { var currentTag = $(this); var toret = $('').attr('wlxml-tag', tagName); if(currentTag.attr('class')) - toret.attr('wlxml-class', currentTag.attr('class')); + toret.attr('wlxml-class', currentTag.attr('class').replace(/\./g, '-')); toret.append(currentTag.contents()); return toret; }); @@ -71,7 +70,7 @@ if(typeof module !== 'undefined' && module.exports) { var tagName = div.attr('wlxml-tag'); var toret = $('<'+tagName+'>'); if(div.attr('wlxml-class')) - toret.attr('class', div.attr('wlxml-class')) + toret.attr('class', div.attr('wlxml-class').replace(/-/g, '.')) toret.append(div.contents()); return toret; });