UNPKG

@elliemae/ds-wysiwygeditor

Version:

Ellie Mae - Dim Sum - WYSIWYG Editor

25 lines (19 loc) 578 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var formatHTML = function formatHTML(html) { var tab = '\t'; var result = ''; var indent = ''; html.split(/>\s*</).forEach(function (element) { if (element.match(/^\/\w/)) { indent = indent.substring(tab.length); } result += "".concat(indent, "<").concat(element, ">\r\n"); if (element.match(/^<?\w[^>]*[^/]$/)) { indent += tab; } }); return result.substring(1, result.length - 3); }; exports.formatHTML = formatHTML; //# sourceMappingURL=utils.js.map