mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 07:11:43 +00:00
borrar <script> y <style>
This commit is contained in:
parent
792047d4c8
commit
570752edec
1 changed files with 5 additions and 0 deletions
|
@ -22,6 +22,11 @@ export interface Editor {
|
|||
// Lo hace para que siga la estructura del documento y que no se borren por
|
||||
// cleanContent luego.
|
||||
function fixContent (editor: Editor, node: Element = editor.contentEl): void {
|
||||
if (node.tagName === 'SCRIPT' || node.tagName === 'STYLE') {
|
||||
node.parentElement?.removeChild(node)
|
||||
return
|
||||
}
|
||||
|
||||
if (node.tagName === 'I') {
|
||||
const el = document.createElement('em')
|
||||
moveChildren(node, el, null)
|
||||
|
|
Loading…
Reference in a new issue