Ghost/ghost/admin/app/utils/caja-sanitizers.js
Kevin Ansfield 4edebe9f1e use markdown-it for markdown previews (#690)
 use markdown-it for markdown previews

no issue

- replaces SimpleMDE's default `marked` rendering with `markdown-it`
- add ember-browserify and markdown-it plugins
2017-05-15 18:51:19 +02:00

28 lines
575 B
JavaScript

/**
* google-caja uses url() and id() to verify if the values are allowed.
*/
/**
* Check if URL is allowed
* URLs are allowed if they start with http://, https://, or /.
* NOTE: # urls are not allowed as clicking them will break the editor when clicked
*/
let url = function (url) {
url = url.toString().replace(/['"]+/g, '');
if (/^https?:\/\//.test(url) || /^\//.test(url)) {
return url;
}
};
/**
* Check if ID is allowed
* All ids are allowed at the moment.
*/
let id = function (id) {
return id;
};
export default {
url,
id
};