HTML TAG

'editor.contentFilter.allowIFrame' true 로 설정하면 <iframe> 태그 삽입을 허용합니다. (기본값 false)

{
	'editor.contentFilter.allowIFrame': false
}


'editor.contentFilter.allowScript' true로 설정하면 <script> 태그 삽입을 허용합니다. (기본값 false)

{
	'editor.contentFilter.allowScript': false
}


 'editor.contentFilter.allowScript' true로 설정하면 <link> 태그 삽입을 허용합니다. (기본값 false)

{
	'editor.contentFilter.allowLink': false
}


HTML EVENT

 'editor.contentFilter.allowEventAttribute' true로 설정하면 HTML 태그의 이벤트 속성(onclick, onload, onchange, ....)을 허용합니다. (기본값 false)

{
	'editor.contentFilter.allowEventAttribute': false
}