import Ember from 'ember'; /* global html_sanitize*/ import cajaSanitizers from 'ghost/utils/caja-sanitizers'; export default Ember.Helper.helper(function (params) { if (!params || !params.length) { return; } var escapedhtml = params[0] || ''; // replace script and iFrame escapedhtml = escapedhtml.replace(/)<[^<]*)*<\/script>/gi, '
Embedded JavaScript
'); escapedhtml = escapedhtml.replace(/)<[^<]*)*<\/iframe>/gi, '
Embedded iFrame
'); // sanitize HTML // jscs:disable requireCamelCaseOrUpperCaseIdentifiers escapedhtml = html_sanitize(escapedhtml, cajaSanitizers.url, cajaSanitizers.id); // jscs:enable requireCamelCaseOrUpperCaseIdentifiers return Ember.String.htmlSafe(escapedhtml); });