...
| Code Block |
|---|
| language | js |
|---|
| theme | Emacs |
|---|
| title | synapeditor.config.js |
|---|
|
{
'editor.contentFilter.allowScript': false
} |
HTML EVENT (기
'editor.contentFilter.allowEventAttribute' 설정을 true로 설정하면 HTML 태그의 Event를 유지합니다제거합니다.
| Code Block |
|---|
| language | js |
|---|
| theme | Emacs |
|---|
| title | synapeditor.config.js |
|---|
|
{
'editor.contentFilter.allowEventAttribute': true
} |
'editor.contentFilter.allowIScriptallowEventAttribute' 설정을 false로 설정하면 script tag 삽입을 제한하여 자동으로 태그를 제거합니다.true로 설정하면 HTML 태그의 Event를 유지합니다. (기본값 false)
| Code Block |
|---|
| language | js |
|---|
| theme | Emacs |
|---|
| title | synapeditor.config.js |
|---|
|
{
'editor.contentFilter.allowEventAttribute': false
} |
...