- if(this.data('orig-append') && this.data('orig-append').length) {
- this.data('orig-append').forEach(function(toAdd) {
- if(toAdd)
- node.prepend(toAdd);
- });
- } else if(this.getWlxmlTag() !== 'span'){
+
+ toret.append(node);
+
+ if(this.data('orig-after')) {
+ toret.append(document.createTextNode(this.data('orig-after')));
+ }
+
+ /* Inside node */
+ if(this.data('orig-begin')) {
+ node.prepend(this.data('orig-begin'));
+ formattings.begin = true;
+ }
+
+ if(this.data('orig-end') !== undefined) {
+ if(this.data('orig-end')) {
+ node.append(this.data('orig-end'));
+ }
+ } else if(this.getWlxmlTag() !== 'span' && children.length){