Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 22 Next »

HTML TAG

<iframe> 태그 삽입 허용

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

synapeditor.config.js
{
	'editor.contentFilter.allowIFrame': false
}

<link> 태그 삽입 허용

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

synapeditor.config.js
{
	'editor.contentFilter.allowLink': false
}

 

 

 



HTML SCRIPT & EVENT ATTRIBUTES

주의!

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

<script> 태그 삽입 허용

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

synapeditor.config.js
{
	'editor.contentFilter.allowScript': false
}

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

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

synapeditor.config.js
{
	'editor.contentFilter.allowEventAttribute': false
}
  • No labels