mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-13 11:35:28 +00:00
7 lines
290 B
TypeScript
7 lines
290 B
TypeScript
export default function clean_html(html: string) {
|
|
return html
|
|
.replace(/<!\[CDATA\[[\s\S]*?\]\]>/gm, '')
|
|
.replace(/(<script[\s\S]*?>)[\s\S]*?<\/script>/gm, '$1</' + 'script>')
|
|
.replace(/(<style[\s\S]*?>)[\s\S]*?<\/style>/gm, '$1</' + 'style>')
|
|
.replace(/<!--[\s\S]*?-->/gm, '');
|
|
} |