11 lines
252 B

fetch('./markdown/xss.md').then((response) => response.text()).then((value) => {
window.cherry = new Cherry({
id: 'markdown',
engine: {
global: {
htmlWhiteList: 'iframe|script|style',
},
},
value: value,
});
});