수식 편집 플러그인이 추가된 사이냅에디터 2.16.0 버전이 릴리즈 되었습니다.

주요 개선사항



1. 수식 편집기 플러그인

 


2. 단축키 정의시 실행함수 설정

window.SynapEditor.addPlugin('customShortcut', function (editor) {
  return {
    shortcutDef: [{
      key: {
        windows: 'Alt+Shift+X',
        mac: 'Alt+Shift+X'
      },
      option: {
        onExecute: function (editor, e) {
          editor.selectionManager.selectAll();
          editor.execCommand('textFill', '#ff0000');
          editor.selectionManager.documentStart();
          editor.selectionRenderer.renderSelection(editor.selectionManager.selection);
        }
      }
    }]
  }
});


3. 자간조절 단축키