Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

HTML TAG

<iframe> 태그 삽입 허용

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

Code Block
languagejs
themeEmacs
titlesynapeditor.config.js
{
	'editor.contentFilter.allowIframe': false
}

<embed> 태그 삽입 허용

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

Code Block
languagejs
themeEmacs
titlesynapeditor.config.js
{
	'editor.contentFilter.allowEmbed': false
}

<object> 태그 삽입 허용

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

Code Block
languagejs
themeEmacs
titlesynapeditor.config.js
{
	'editor.contentFilter.allowObject': false

...


}


<link> 태그 삽입 허용

Status
colourYellow
title릴리즈 2.7.0 이상
 'editor.contentFilter.allowLink' 옵션을 true로 설정하면 <link> 태그 삽입을 허용합니다. (기본값 false)

Code Block
languagejs
themeEmacs
titlesynapeditor.config.js
{
	'editor.contentFilter.allowIFrameallowLink': false
}

 

 

 


...

HTML SCRIPT & EVENT ATTRIBUTES

Warning
title주의!

옵션사용으로 인해 발생하는 보안문제는 책임질 수 없습니다.

<script> 태그 삽입 허용

'editor.contentFilter.allowScript' false 옵션을 true로 설정하면 <script> 태그 삽입을 제한하여 자동으로 태그를 제거합니다.허용합니다. (기본값 false)

Code Block
languagejs
themeEmacs
titlesynapeditor.config.js
{
	'editor.contentFilter.allowScript': false
}

HTML EVENT


이벤트 속성(Attribute) 삽입 허용

Status
colourYellow
title릴리즈 2.7.0 이상
 'editor.contentFilter.allowEventAttribute' false 옵션을 true로 설정하면 HTML 태그의 Event를 제거합니다이벤트 속성(onclick, onload, onchange, ....)을 허용합니다. (기본값 false)

Code Block
languagejs
themeEmacs
titlesynapeditor.config.js
{
	'editor.contentFilter.allowEventAttribute': false
}

...