4edebe9f1e
✨ use markdown-it for markdown previews
no issue
- replaces SimpleMDE's default `marked` rendering with `markdown-it`
- add ember-browserify and markdown-it plugins
28 lines
575 B
JavaScript
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
|
|
};
|