PHP Classes

File: public/js/tinymce/src/plugins/searchreplace/src/test/js/module/test/HtmlUtils.js

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   GoLavaCMS   public/js/tinymce/src/plugins/searchreplace/src/test/js/module/test/HtmlUtils.js   Download  
File: public/js/tinymce/src/plugins/searchreplace/src/test/js/module/test/HtmlUtils.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: GoLavaCMS
Publish content on Web pages with SEO support
Author: By
Last change:
Date: 6 years ago
Size: 1,429 bytes
 

Contents

Class file image Download
define( 'tinymce.plugins.searchreplace.test.HtmlUtils', [ 'tinymce.core.html.Writer', 'tinymce.core.html.SaxParser' ], function (Writer, SaxParser) { var cleanHtml = function (html) { return html.toLowerCase().replace(/[\r\n]+/gi, '') .replace(/ (sizcache[0-9]+|sizcache|nodeindex|sizset[0-9]+|sizset|data\-mce\-expando|data\-mce\-selected)="[^"]*"/gi, '') .replace(/<span[^>]+data-mce-bogus[^>]+>[\u200B\uFEFF]+<\/span>|<div[^>]+data-mce-bogus[^>]+><\/div>/gi, '') .replace(/ style="([^"]+)"/gi, function (val1, val2) { val2 = val2.replace(/;$/, ''); return ' style="' + val2.replace(/\:([^ ])/g, ': $1') + ';"'; }); }; var normalizeHtml = function (html) { var writer = new Writer(); new SaxParser({ validate: false, comment: writer.comment, cdata: writer.cdata, text: writer.text, end: writer.end, pi: writer.pi, doctype: writer.doctype, start: function (name, attrs, empty) { attrs.sort(function (a, b) { if (a.name === b.name) { return 0; } return a.name > b.name ? 1 : -1; }); writer.start(name, attrs, empty); } }).parse(html); return writer.getContent(); }; return { cleanHtml: cleanHtml, normalizeHtml: normalizeHtml }; } );