HTML content를 Synap Editor에 보여줍니다.
Parameters:
Name | Type | Description |
---|---|---|
html | String | Html content |
options | Object | 릴리즈 2.6.0 이상 { callback: function() {}, // 완료 후 호출할 callback함수 bAsync: false, // 동기처리 (기본값: false) bFocus: true, // 문서열기 후 에디터에 포커스처리 (기본값: true) bOverwrite: true, // 덮어쓰기처리 (기본값: true) clearDirty: true, // 본문 편집여부에 대한 정보 저장 (기본값: true) 2.11.0 useAltImage: true // 대체이미지변환 (기본값: true) 2.11.7 } |
Example:
var html = "<H1>Synap Editor</H><P>Holistic Rich Text Editor</P>"; editor.openHTML(html);