diff --git a/package.json b/package.json index 02f68e23..e2df20d2 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ "test:ci": "npm run lint && npm run test:unit" }, "dependencies": { + "@toast-ui/editor": "^3.1.0", "axios": "0.18.1", "clipboard": "2.0.4", "codemirror": "5.45.0", @@ -34,7 +35,6 @@ "screenfull": "4.2.0", "script-loader": "0.7.2", "sortablejs": "1.8.4", - "tui-editor": "1.3.3", "vue": "2.6.10", "vue-count-to": "1.0.13", "vue-router": "3.0.2", diff --git a/src/components/MarkdownEditor/default-options.js b/src/components/MarkdownEditor/default-options.js index 303aa13d..4099c81e 100644 --- a/src/components/MarkdownEditor/default-options.js +++ b/src/components/MarkdownEditor/default-options.js @@ -7,25 +7,10 @@ export default { usageStatistics: false, hideModeSwitch: false, toolbarItems: [ - 'heading', - 'bold', - 'italic', - 'strike', - 'divider', - 'hr', - 'quote', - 'divider', - 'ul', - 'ol', - 'task', - 'indent', - 'outdent', - 'divider', - 'table', - 'image', - 'link', - 'divider', - 'code', - 'codeblock' + ['heading', 'bold', 'italic', 'strike'], + ['hr', 'quote'], + ['ul', 'ol', 'task', 'indent', 'outdent'], + ['table', 'image', 'link'], + ['code', 'codeblock'] ] } diff --git a/src/components/MarkdownEditor/index.vue b/src/components/MarkdownEditor/index.vue index 1a8a01ee..7befa98c 100644 --- a/src/components/MarkdownEditor/index.vue +++ b/src/components/MarkdownEditor/index.vue @@ -5,10 +5,9 @@