Skip to content

v1.2.0

Choose a tag to compare

@kyuwoo-choi kyuwoo-choi released this 05 Jun 06:37
· 361 commits to master since this release

Features

  • 970ad89 Feat: add chart extension options (close #192) (#193)
    Specify the chart option like below
    var editor = new tui.Editor({
        el: document.querySelector('#editSection'),
        previewStyle: 'vertical',
        height: '400px',
        initialEditType: 'markdown',
        useCommandShortcut: true,
        initialValue: content,
        exts: [
          {
            name: 'chart',
            minWidth: 100,
            maxWidth: 600,
            minHeight: 100,
            maxHeight: 300
          },
          'scrollSync',
          'colorSyntax',
          'uml',
          'mark',
          'table'
        ]
      });

Bug Fixes