2015-02-13 07:22:32 +03:00
|
|
|
import Ember from 'ember';
|
2015-02-09 18:57:50 +03:00
|
|
|
/* global Showdown, html_sanitize*/
|
2014-07-25 14:42:42 +04:00
|
|
|
import cajaSanitizers from 'ghost/utils/caja-sanitizers';
|
|
|
|
|
2014-10-25 01:09:50 +04:00
|
|
|
var showdown,
|
|
|
|
formatMarkdown;
|
2014-03-02 18:30:35 +04:00
|
|
|
|
2014-12-03 22:52:29 +03:00
|
|
|
showdown = new Showdown.converter({extensions: ['ghostimagepreview', 'ghostgfm', 'footnotes', 'highlight']});
|
2014-10-25 01:09:50 +04:00
|
|
|
|
2015-02-09 18:57:50 +03:00
|
|
|
formatMarkdown = Ember.HTMLBars.makeBoundHelper(function (arr /* hashParams */) {
|
|
|
|
if (!arr || !arr.length) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var escapedhtml = '',
|
|
|
|
markdown = arr[0] || '';
|
2014-08-05 16:11:20 +04:00
|
|
|
|
|
|
|
// convert markdown to HTML
|
2015-02-09 18:57:50 +03:00
|
|
|
escapedhtml = showdown.makeHtml(markdown);
|
2014-07-25 14:42:42 +04:00
|
|
|
|
|
|
|
// replace script and iFrame
|
2014-08-05 16:11:20 +04:00
|
|
|
escapedhtml = escapedhtml.replace(/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
|
2014-07-31 22:05:56 +04:00
|
|
|
'<pre class="js-embed-placeholder">Embedded JavaScript</pre>');
|
2014-08-05 16:11:20 +04:00
|
|
|
escapedhtml = escapedhtml.replace(/<iframe\b[^<]*(?:(?!<\/iframe>)<[^<]*)*<\/iframe>/gi,
|
2014-07-31 22:05:56 +04:00
|
|
|
'<pre class="iframe-embed-placeholder">Embedded iFrame</pre>');
|
2014-07-25 14:42:42 +04:00
|
|
|
|
|
|
|
// sanitize html
|
2014-10-25 01:09:50 +04:00
|
|
|
// jscs:disable requireCamelCaseOrUpperCaseIdentifiers
|
2014-08-05 16:11:20 +04:00
|
|
|
escapedhtml = html_sanitize(escapedhtml, cajaSanitizers.url, cajaSanitizers.id);
|
2014-10-25 01:09:50 +04:00
|
|
|
// jscs:enable requireCamelCaseOrUpperCaseIdentifiers
|
|
|
|
|
2015-02-09 18:57:50 +03:00
|
|
|
return Ember.String.htmlSafe(escapedhtml);
|
2014-03-04 00:18:10 +04:00
|
|
|
});
|
|
|
|
|
2014-10-25 01:09:50 +04:00
|
|
|
export default formatMarkdown;
|