Page tree

Versions Compared

Key

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

...

6. HTML 불러오기시 Attribute유지하는 옵션 제공

  • 외부 HTML 불러오기시 누락되던 Attribute를 유지 할 수 있도록 옵션이 추가 되었습니다.
  • allowAttrList배열 안에 양식에서 사용되는 Attribute를 등록할 경우에 불러오기시 해당 Attribute가 유지 됩니다.
Code Block
const synapEditorConfig = {
	//...
	/**
	   * 에디터 자동링크* 사용htmlBuild시 여부를옵션을 설정합니다.
	     */
	'editor.buildOption.html': {
        allowAttrList: ['attributename', 'attributename2', '...']
    }
	//...
};

...