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 10 Next »

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

주요 개선사항



1. 수식 편집기 플러그인

  • 수식 편집기 플러그인이 추가되었습니다. 이제 수식, 화학식을 삽입하고 편집할 수 있습니다.

 


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

  • 커스텀 플러그인을 통해 단축키 설정시 지정된 action외 실행함수를 직접 지정할 수 있습니다.
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. 자간조절 단축키

  • 자간을 조절할 수 있는 단축키가 추가 되었습니다.

 

  • 자간 늘리기: Alt + Shift + W
  • 자간 줄이기: Alt + Shift + N
  • 자세한 내용 보기: 단축키




  • No labels