default-options.js 556 B

12345678910111213141516171819202122232425262728293031
  1. // doc: https://nhnent.github.io/tui.editor/api/latest/ToastUIEditor.html#ToastUIEditor
  2. export default {
  3. minHeight: '200px',
  4. previewStyle: 'vertical',
  5. useCommandShortcut: true,
  6. useDefaultHTMLSanitizer: true,
  7. usageStatistics: false,
  8. hideModeSwitch: false,
  9. toolbarItems: [
  10. 'heading',
  11. 'bold',
  12. 'italic',
  13. 'strike',
  14. 'divider',
  15. 'hr',
  16. 'quote',
  17. 'divider',
  18. 'ul',
  19. 'ol',
  20. 'task',
  21. 'indent',
  22. 'outdent',
  23. 'divider',
  24. 'table',
  25. 'image',
  26. 'link',
  27. 'divider',
  28. 'code',
  29. 'codeblock'
  30. ]
  31. }