@licium/editor 3.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (265) hide show
  1. package/README.md +176 -0
  2. package/dist/esm/i18n/__test__/integration/ui/layout.spec.d.ts +1 -0
  3. package/dist/esm/i18n/__test__/integration/ui/toolbar.spec.d.ts +1 -0
  4. package/dist/esm/i18n/__test__/integration/vdom/render.spec.d.ts +1 -0
  5. package/dist/esm/i18n/__test__/integration/widget/widgetNode.spec.d.ts +1 -0
  6. package/dist/esm/i18n/__test__/unit/convertor.spec.d.ts +1 -0
  7. package/dist/esm/i18n/__test__/unit/dom.spec.d.ts +1 -0
  8. package/dist/esm/i18n/__test__/unit/editor.spec.d.ts +1 -0
  9. package/dist/esm/i18n/__test__/unit/eventEmitter.spec.d.ts +1 -0
  10. package/dist/esm/i18n/__test__/unit/helper/common.spec.d.ts +1 -0
  11. package/dist/esm/i18n/__test__/unit/helper/image.spec.d.ts +1 -0
  12. package/dist/esm/i18n/__test__/unit/linkXss.spec.d.ts +1 -0
  13. package/dist/esm/i18n/__test__/unit/markdown/keymap.spec.d.ts +1 -0
  14. package/dist/esm/i18n/__test__/unit/markdown/mdCommand.spec.d.ts +1 -0
  15. package/dist/esm/i18n/__test__/unit/markdown/mdEditor.spec.d.ts +1 -0
  16. package/dist/esm/i18n/__test__/unit/markdown/mdPreview.spec.d.ts +1 -0
  17. package/dist/esm/i18n/__test__/unit/markdown/smartTask.spec.d.ts +1 -0
  18. package/dist/esm/i18n/__test__/unit/markdown/syntaxHighlight.spec.d.ts +1 -0
  19. package/dist/esm/i18n/__test__/unit/markdown/util.d.ts +7 -0
  20. package/dist/esm/i18n/__test__/unit/repro_3296.spec.d.ts +1 -0
  21. package/dist/esm/i18n/__test__/unit/sanitizer.spec.d.ts +1 -0
  22. package/dist/esm/i18n/__test__/unit/utils/escape.spec.d.ts +1 -0
  23. package/dist/esm/i18n/__test__/unit/utils/pollution.spec.d.ts +1 -0
  24. package/dist/esm/i18n/__test__/unit/vdom/template.spec.d.ts +1 -0
  25. package/dist/esm/i18n/__test__/unit/viewer.spec.d.ts +1 -0
  26. package/dist/esm/i18n/__test__/unit/wysiwyg/customBlock.spec.d.ts +1 -0
  27. package/dist/esm/i18n/__test__/unit/wysiwyg/helper/pasteMsoList.spec.d.ts +1 -0
  28. package/dist/esm/i18n/__test__/unit/wysiwyg/imageInsertion.spec.d.ts +1 -0
  29. package/dist/esm/i18n/__test__/unit/wysiwyg/keymap.spec.d.ts +1 -0
  30. package/dist/esm/i18n/__test__/unit/wysiwyg/wwCommand.spec.d.ts +1 -0
  31. package/dist/esm/i18n/__test__/unit/wysiwyg/wwEditor.spec.d.ts +1 -0
  32. package/dist/esm/i18n/__test__/unit/wysiwyg/wwTableCommand.spec.d.ts +1 -0
  33. package/dist/esm/i18n/__test__/unit/wysiwyg/wwToDOMAdaptor.spec.d.ts +1 -0
  34. package/dist/esm/i18n/__test__/unit/xssSanitizer.spec.d.ts +1 -0
  35. package/dist/esm/i18n/ar.d.ts +1 -0
  36. package/dist/esm/i18n/ar.js +63 -0
  37. package/dist/esm/i18n/base.d.ts +60 -0
  38. package/dist/esm/i18n/commands/commandManager.d.ts +16 -0
  39. package/dist/esm/i18n/commands/defaultCommands.d.ts +2 -0
  40. package/dist/esm/i18n/commands/wwCommands.d.ts +2 -0
  41. package/dist/esm/i18n/convertors/convertor.d.ts +19 -0
  42. package/dist/esm/i18n/convertors/toMarkdown/toMdConvertorState.d.ts +30 -0
  43. package/dist/esm/i18n/convertors/toMarkdown/toMdConvertors.d.ts +7 -0
  44. package/dist/esm/i18n/convertors/toMarkdown/toMdNodeTypeWriters.d.ts +8 -0
  45. package/dist/esm/i18n/convertors/toWysiwyg/htmlToWwConvertors.d.ts +7 -0
  46. package/dist/esm/i18n/convertors/toWysiwyg/toWwConvertorState.d.ts +23 -0
  47. package/dist/esm/i18n/convertors/toWysiwyg/toWwConvertors.d.ts +4 -0
  48. package/dist/esm/i18n/cs-cz.d.ts +1 -0
  49. package/dist/esm/i18n/cs-cz.js +63 -0
  50. package/dist/esm/i18n/de-de.d.ts +1 -0
  51. package/dist/esm/i18n/de-de.js +63 -0
  52. package/dist/esm/i18n/editor.d.ts +36 -0
  53. package/dist/esm/i18n/editorCore.d.ts +330 -0
  54. package/dist/esm/i18n/en-us.d.ts +1 -0
  55. package/dist/esm/i18n/en-us.js +63 -0
  56. package/dist/esm/i18n/es-es.d.ts +1 -0
  57. package/dist/esm/i18n/es-es.js +63 -0
  58. package/dist/esm/i18n/esm/index.d.ts +5 -0
  59. package/dist/esm/i18n/esm/indexViewer.d.ts +2 -0
  60. package/dist/esm/i18n/event/eventEmitter.d.ts +73 -0
  61. package/dist/esm/i18n/fi-fi.d.ts +1 -0
  62. package/dist/esm/i18n/fi-fi.js +63 -0
  63. package/dist/esm/i18n/fr-fr.d.ts +1 -0
  64. package/dist/esm/i18n/fr-fr.js +63 -0
  65. package/dist/esm/i18n/gl-es.d.ts +5 -0
  66. package/dist/esm/i18n/gl-es.js +63 -0
  67. package/dist/esm/i18n/helper/image.d.ts +4 -0
  68. package/dist/esm/i18n/helper/manipulation.d.ts +16 -0
  69. package/dist/esm/i18n/helper/plugin.d.ts +3 -0
  70. package/dist/esm/i18n/hr-hr.d.ts +1 -0
  71. package/dist/esm/i18n/hr-hr.js +63 -0
  72. package/dist/esm/i18n/i18n.d.ts +20 -0
  73. package/dist/esm/i18n/i18n.js +217 -0
  74. package/dist/esm/i18n/index.d.ts +10 -0
  75. package/dist/esm/i18n/indexEditorOnlyStyle.d.ts +3 -0
  76. package/dist/esm/i18n/indexViewer.d.ts +3 -0
  77. package/dist/esm/i18n/it-it.d.ts +1 -0
  78. package/dist/esm/i18n/it-it.js +63 -0
  79. package/dist/esm/i18n/ja-jp.d.ts +1 -0
  80. package/dist/esm/i18n/ja-jp.js +63 -0
  81. package/dist/esm/i18n/ko-kr.d.ts +1 -0
  82. package/dist/esm/i18n/ko-kr.js +63 -0
  83. package/dist/esm/i18n/markdown/helper/list.d.ts +55 -0
  84. package/dist/esm/i18n/markdown/helper/mdCommand.d.ts +5 -0
  85. package/dist/esm/i18n/markdown/helper/pos.d.ts +22 -0
  86. package/dist/esm/i18n/markdown/helper/query.d.ts +3 -0
  87. package/dist/esm/i18n/markdown/htmlRenderConvertors.d.ts +5 -0
  88. package/dist/esm/i18n/markdown/marks/blockQuote.d.ts +19 -0
  89. package/dist/esm/i18n/markdown/marks/code.d.ts +25 -0
  90. package/dist/esm/i18n/markdown/marks/codeBlock.d.ts +18 -0
  91. package/dist/esm/i18n/markdown/marks/customBlock.d.ts +10 -0
  92. package/dist/esm/i18n/markdown/marks/emph.d.ts +17 -0
  93. package/dist/esm/i18n/markdown/marks/heading.d.ts +23 -0
  94. package/dist/esm/i18n/markdown/marks/html.d.ts +8 -0
  95. package/dist/esm/i18n/markdown/marks/link.d.ts +29 -0
  96. package/dist/esm/i18n/markdown/marks/listItem.d.ts +42 -0
  97. package/dist/esm/i18n/markdown/marks/simpleMark.d.ts +32 -0
  98. package/dist/esm/i18n/markdown/marks/strike.d.ts +14 -0
  99. package/dist/esm/i18n/markdown/marks/strong.d.ts +18 -0
  100. package/dist/esm/i18n/markdown/marks/table.d.ts +27 -0
  101. package/dist/esm/i18n/markdown/marks/thematicBreak.d.ts +17 -0
  102. package/dist/esm/i18n/markdown/mdEditor.d.ts +48 -0
  103. package/dist/esm/i18n/markdown/mdPreview.d.ts +50 -0
  104. package/dist/esm/i18n/markdown/nodes/doc.d.ts +7 -0
  105. package/dist/esm/i18n/markdown/nodes/paragraph.d.ts +46 -0
  106. package/dist/esm/i18n/markdown/nodes/text.d.ts +7 -0
  107. package/dist/esm/i18n/markdown/plugins/helper/markInfo.d.ts +19 -0
  108. package/dist/esm/i18n/markdown/plugins/previewHighlight.d.ts +3 -0
  109. package/dist/esm/i18n/markdown/plugins/smartTask.d.ts +3 -0
  110. package/dist/esm/i18n/markdown/plugins/syntaxHighlight.d.ts +3 -0
  111. package/dist/esm/i18n/markdown/scroll/animation.d.ts +2 -0
  112. package/dist/esm/i18n/markdown/scroll/dom.d.ts +16 -0
  113. package/dist/esm/i18n/markdown/scroll/offset.d.ts +9 -0
  114. package/dist/esm/i18n/markdown/scroll/scrollSync.d.ts +30 -0
  115. package/dist/esm/i18n/nb-no.d.ts +1 -0
  116. package/dist/esm/i18n/nb-no.js +63 -0
  117. package/dist/esm/i18n/nl-nl.d.ts +1 -0
  118. package/dist/esm/i18n/nl-nl.js +63 -0
  119. package/dist/esm/i18n/pl-pl.d.ts +1 -0
  120. package/dist/esm/i18n/pl-pl.js +63 -0
  121. package/dist/esm/i18n/plugins/dropImage.d.ts +3 -0
  122. package/dist/esm/i18n/plugins/placeholder.d.ts +7 -0
  123. package/dist/esm/i18n/plugins/popupWidget.d.ts +3 -0
  124. package/dist/esm/i18n/pt-br.d.ts +1 -0
  125. package/dist/esm/i18n/pt-br.js +63 -0
  126. package/dist/esm/i18n/queries/queryManager.d.ts +2 -0
  127. package/dist/esm/i18n/ru-ru.d.ts +1 -0
  128. package/dist/esm/i18n/ru-ru.js +64 -0
  129. package/dist/esm/i18n/sanitizer/htmlSanitizer.d.ts +3 -0
  130. package/dist/esm/i18n/spec/mark.d.ts +12 -0
  131. package/dist/esm/i18n/spec/node.d.ts +12 -0
  132. package/dist/esm/i18n/spec/specManager.d.ts +16 -0
  133. package/dist/esm/i18n/sv-se.d.ts +1 -0
  134. package/dist/esm/i18n/sv-se.js +63 -0
  135. package/dist/esm/i18n/tr-tr.d.ts +1 -0
  136. package/dist/esm/i18n/tr-tr.js +63 -0
  137. package/dist/esm/i18n/ui/components/contextMenu.d.ts +21 -0
  138. package/dist/esm/i18n/ui/components/layout.d.ts +36 -0
  139. package/dist/esm/i18n/ui/components/popup.d.ts +21 -0
  140. package/dist/esm/i18n/ui/components/switch.d.ts +17 -0
  141. package/dist/esm/i18n/ui/components/tabs.d.ts +12 -0
  142. package/dist/esm/i18n/ui/components/toolbar/customPopupBody.d.ts +16 -0
  143. package/dist/esm/i18n/ui/components/toolbar/headingPopupBody.d.ts +12 -0
  144. package/dist/esm/i18n/ui/components/toolbar/imagePopupBody.d.ts +30 -0
  145. package/dist/esm/i18n/ui/components/toolbar/linkPopupBody.d.ts +18 -0
  146. package/dist/esm/i18n/ui/components/toolbar/tablePopupBody.d.ts +29 -0
  147. package/dist/esm/i18n/ui/components/toolbar/toolbar.d.ts +45 -0
  148. package/dist/esm/i18n/ui/components/toolbar/toolbarGroup.d.ts +21 -0
  149. package/dist/esm/i18n/ui/toolbarItemFactory.d.ts +13 -0
  150. package/dist/esm/i18n/ui/vdom/commit.d.ts +2 -0
  151. package/dist/esm/i18n/ui/vdom/component.d.ts +10 -0
  152. package/dist/esm/i18n/ui/vdom/dom.d.ts +6 -0
  153. package/dist/esm/i18n/ui/vdom/render.d.ts +4 -0
  154. package/dist/esm/i18n/ui/vdom/renderer.d.ts +4 -0
  155. package/dist/esm/i18n/ui/vdom/template.d.ts +3 -0
  156. package/dist/esm/i18n/ui/vdom/vnode.d.ts +30 -0
  157. package/dist/esm/i18n/uk-ua.d.ts +1 -0
  158. package/dist/esm/i18n/uk-ua.js +63 -0
  159. package/dist/esm/i18n/utils/common.d.ts +19 -0
  160. package/dist/esm/i18n/utils/constants.d.ts +8 -0
  161. package/dist/esm/i18n/utils/dom.d.ts +25 -0
  162. package/dist/esm/i18n/utils/map.d.ts +19 -0
  163. package/dist/esm/i18n/utils/markdown.d.ts +23 -0
  164. package/dist/esm/i18n/viewer.d.ts +77 -0
  165. package/dist/esm/i18n/widget/rules.d.ts +28 -0
  166. package/dist/esm/i18n/widget/widgetNode.d.ts +28 -0
  167. package/dist/esm/i18n/wysiwyg/adaptor/mdLikeNode.d.ts +5 -0
  168. package/dist/esm/i18n/wysiwyg/adaptor/wwToDOMAdaptor.d.ts +13 -0
  169. package/dist/esm/i18n/wysiwyg/clipboard/paste.d.ts +6 -0
  170. package/dist/esm/i18n/wysiwyg/clipboard/pasteMsoList.d.ts +2 -0
  171. package/dist/esm/i18n/wysiwyg/clipboard/pasteTextParser.d.ts +2 -0
  172. package/dist/esm/i18n/wysiwyg/clipboard/pasteToTable.d.ts +3 -0
  173. package/dist/esm/i18n/wysiwyg/command/list.d.ts +7 -0
  174. package/dist/esm/i18n/wysiwyg/command/table.d.ts +16 -0
  175. package/dist/esm/i18n/wysiwyg/helper/node.d.ts +37 -0
  176. package/dist/esm/i18n/wysiwyg/helper/table.d.ts +25 -0
  177. package/dist/esm/i18n/wysiwyg/helper/tableOffsetMap.d.ts +88 -0
  178. package/dist/esm/i18n/wysiwyg/markdownInputRules.d.ts +3 -0
  179. package/dist/esm/i18n/wysiwyg/marks/code.d.ts +31 -0
  180. package/dist/esm/i18n/wysiwyg/marks/emph.d.ts +34 -0
  181. package/dist/esm/i18n/wysiwyg/marks/link.d.ts +59 -0
  182. package/dist/esm/i18n/wysiwyg/marks/strike.d.ts +31 -0
  183. package/dist/esm/i18n/wysiwyg/marks/strong.d.ts +34 -0
  184. package/dist/esm/i18n/wysiwyg/nodes/blockQuote.d.ts +33 -0
  185. package/dist/esm/i18n/wysiwyg/nodes/bulletList.d.ts +43 -0
  186. package/dist/esm/i18n/wysiwyg/nodes/codeBlock.d.ts +45 -0
  187. package/dist/esm/i18n/wysiwyg/nodes/customBlock.d.ts +26 -0
  188. package/dist/esm/i18n/wysiwyg/nodes/doc.d.ts +7 -0
  189. package/dist/esm/i18n/wysiwyg/nodes/frontMatter.d.ts +21 -0
  190. package/dist/esm/i18n/wysiwyg/nodes/hardBreak.d.ts +14 -0
  191. package/dist/esm/i18n/wysiwyg/nodes/heading.d.ts +38 -0
  192. package/dist/esm/i18n/wysiwyg/nodes/html.d.ts +11 -0
  193. package/dist/esm/i18n/wysiwyg/nodes/htmlComment.d.ts +21 -0
  194. package/dist/esm/i18n/wysiwyg/nodes/image.d.ts +45 -0
  195. package/dist/esm/i18n/wysiwyg/nodes/listItem.d.ts +36 -0
  196. package/dist/esm/i18n/wysiwyg/nodes/orderedList.d.ts +39 -0
  197. package/dist/esm/i18n/wysiwyg/nodes/paragraph.d.ts +21 -0
  198. package/dist/esm/i18n/wysiwyg/nodes/table.d.ts +80 -0
  199. package/dist/esm/i18n/wysiwyg/nodes/tableBody.d.ts +26 -0
  200. package/dist/esm/i18n/wysiwyg/nodes/tableBodyCell.d.ts +36 -0
  201. package/dist/esm/i18n/wysiwyg/nodes/tableHead.d.ts +26 -0
  202. package/dist/esm/i18n/wysiwyg/nodes/tableHeadCell.d.ts +39 -0
  203. package/dist/esm/i18n/wysiwyg/nodes/tableRow.d.ts +26 -0
  204. package/dist/esm/i18n/wysiwyg/nodes/text.d.ts +14 -0
  205. package/dist/esm/i18n/wysiwyg/nodes/thematicBreak.d.ts +33 -0
  206. package/dist/esm/i18n/wysiwyg/nodeview/codeBlockView.d.ts +29 -0
  207. package/dist/esm/i18n/wysiwyg/nodeview/customBlockView.d.ts +29 -0
  208. package/dist/esm/i18n/wysiwyg/nodeview/imageView.d.ts +20 -0
  209. package/dist/esm/i18n/wysiwyg/plugins/selection/cellSelection.d.ts +14 -0
  210. package/dist/esm/i18n/wysiwyg/plugins/selection/tableSelection.d.ts +2 -0
  211. package/dist/esm/i18n/wysiwyg/plugins/selection/tableSelectionView.d.ts +19 -0
  212. package/dist/esm/i18n/wysiwyg/plugins/tableContextMenu.d.ts +3 -0
  213. package/dist/esm/i18n/wysiwyg/plugins/task.d.ts +2 -0
  214. package/dist/esm/i18n/wysiwyg/plugins/toolbarState.d.ts +3 -0
  215. package/dist/esm/i18n/wysiwyg/specCreator.d.ts +3 -0
  216. package/dist/esm/i18n/wysiwyg/wwEditor.d.ts +57 -0
  217. package/dist/esm/i18n/zh-cn.d.ts +1 -0
  218. package/dist/esm/i18n/zh-cn.js +63 -0
  219. package/dist/esm/i18n/zh-tw.d.ts +1 -0
  220. package/dist/esm/i18n/zh-tw.js +63 -0
  221. package/dist/esm/index.js +25133 -0
  222. package/dist/esm/indexViewer.js +12757 -0
  223. package/dist/i18n/ar.js +162 -0
  224. package/dist/i18n/cs-cz.js +162 -0
  225. package/dist/i18n/de-de.js +162 -0
  226. package/dist/i18n/es-es.js +162 -0
  227. package/dist/i18n/fi-fi.js +162 -0
  228. package/dist/i18n/fr-fr.js +162 -0
  229. package/dist/i18n/gl-es.js +162 -0
  230. package/dist/i18n/hr-hr.js +162 -0
  231. package/dist/i18n/it-it.js +162 -0
  232. package/dist/i18n/ja-jp.js +162 -0
  233. package/dist/i18n/ko-kr.js +162 -0
  234. package/dist/i18n/nb-no.js +162 -0
  235. package/dist/i18n/nl-nl.js +162 -0
  236. package/dist/i18n/pl-pl.js +162 -0
  237. package/dist/i18n/pt-br.js +162 -0
  238. package/dist/i18n/ru-ru.js +163 -0
  239. package/dist/i18n/sv-se.js +162 -0
  240. package/dist/i18n/tr-tr.js +162 -0
  241. package/dist/i18n/uk-ua.js +162 -0
  242. package/dist/i18n/zh-cn.js +162 -0
  243. package/dist/i18n/zh-tw.js +162 -0
  244. package/dist/theme/toastui-editor-dark.css +474 -0
  245. package/dist/toastui-editor-only.css +1068 -0
  246. package/dist/toastui-editor-viewer.css +492 -0
  247. package/dist/toastui-editor-viewer.js +14079 -0
  248. package/dist/toastui-editor.css +1606 -0
  249. package/dist/toastui-editor.js +26464 -0
  250. package/package.json +95 -0
  251. package/types/convertor.d.ts +143 -0
  252. package/types/editor.d.ts +383 -0
  253. package/types/event.d.ts +56 -0
  254. package/types/index.d.ts +70 -0
  255. package/types/map.d.ts +8 -0
  256. package/types/markdown.d.ts +60 -0
  257. package/types/plugin.d.ts +59 -0
  258. package/types/prosemirror-commands.d.ts +15 -0
  259. package/types/prosemirror-model.d.ts +15 -0
  260. package/types/prosemirror-transform.d.ts +35 -0
  261. package/types/spec.d.ts +42 -0
  262. package/types/toastmark.d.ts +357 -0
  263. package/types/toastui-editor-viewer.d.ts +39 -0
  264. package/types/ui.d.ts +165 -0
  265. package/types/wysiwyg.d.ts +36 -0
@@ -0,0 +1,162 @@
1
+ /*!
2
+ * TOAST UI Editor : i18n
3
+ * @version 3.2.3
4
+ * @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>
5
+ * @license MIT
6
+ */
7
+ (function webpackUniversalModuleDefinition(root, factory) {
8
+ if(typeof exports === 'object' && typeof module === 'object')
9
+ module.exports = factory(require("@licium/editor"));
10
+ else if(typeof define === 'function' && define.amd)
11
+ define(["@licium/editor"], factory);
12
+ else {
13
+ var a = typeof exports === 'object' ? factory(require("@licium/editor")) : factory(root["toastui"]["Editor"]);
14
+ for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
15
+ }
16
+ })(self, function(__WEBPACK_EXTERNAL_MODULE__495__) {
17
+ return /******/ (function() { // webpackBootstrap
18
+ /******/ "use strict";
19
+ /******/ var __webpack_modules__ = ({
20
+
21
+ /***/ 495:
22
+ /***/ (function(module) {
23
+
24
+ module.exports = __WEBPACK_EXTERNAL_MODULE__495__;
25
+
26
+ /***/ })
27
+
28
+ /******/ });
29
+ /************************************************************************/
30
+ /******/ // The module cache
31
+ /******/ var __webpack_module_cache__ = {};
32
+ /******/
33
+ /******/ // The require function
34
+ /******/ function __webpack_require__(moduleId) {
35
+ /******/ // Check if module is in cache
36
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
37
+ /******/ if (cachedModule !== undefined) {
38
+ /******/ return cachedModule.exports;
39
+ /******/ }
40
+ /******/ // Create a new module (and put it into the cache)
41
+ /******/ var module = __webpack_module_cache__[moduleId] = {
42
+ /******/ // no module.id needed
43
+ /******/ // no module.loaded needed
44
+ /******/ exports: {}
45
+ /******/ };
46
+ /******/
47
+ /******/ // Execute the module function
48
+ /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
49
+ /******/
50
+ /******/ // Return the exports of the module
51
+ /******/ return module.exports;
52
+ /******/ }
53
+ /******/
54
+ /************************************************************************/
55
+ /******/ /* webpack/runtime/compat get default export */
56
+ /******/ !function() {
57
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
58
+ /******/ __webpack_require__.n = function(module) {
59
+ /******/ var getter = module && module.__esModule ?
60
+ /******/ function() { return module['default']; } :
61
+ /******/ function() { return module; };
62
+ /******/ __webpack_require__.d(getter, { a: getter });
63
+ /******/ return getter;
64
+ /******/ };
65
+ /******/ }();
66
+ /******/
67
+ /******/ /* webpack/runtime/define property getters */
68
+ /******/ !function() {
69
+ /******/ // define getter functions for harmony exports
70
+ /******/ __webpack_require__.d = function(exports, definition) {
71
+ /******/ for(var key in definition) {
72
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
73
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
74
+ /******/ }
75
+ /******/ }
76
+ /******/ };
77
+ /******/ }();
78
+ /******/
79
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
80
+ /******/ !function() {
81
+ /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
82
+ /******/ }();
83
+ /******/
84
+ /******/ /* webpack/runtime/make namespace object */
85
+ /******/ !function() {
86
+ /******/ // define __esModule on exports
87
+ /******/ __webpack_require__.r = function(exports) {
88
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
89
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
90
+ /******/ }
91
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
92
+ /******/ };
93
+ /******/ }();
94
+ /******/
95
+ /************************************************************************/
96
+ var __webpack_exports__ = {};
97
+ // This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
98
+ !function() {
99
+ __webpack_require__.r(__webpack_exports__);
100
+ /* harmony import */ var _editorCore__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(495);
101
+ /* harmony import */ var _editorCore__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editorCore__WEBPACK_IMPORTED_MODULE_0__);
102
+ /**
103
+ * @fileoverview I18N for Traditional Chinese
104
+ * @author Tzu-Ray Su <raysu3329@gmail.com>
105
+ */
106
+
107
+ _editorCore__WEBPACK_IMPORTED_MODULE_0___default().setLanguage('zh-TW', {
108
+ Markdown: 'Markdown',
109
+ WYSIWYG: '所見即所得',
110
+ Write: '編輯',
111
+ Preview: '預覽',
112
+ Headings: '標題',
113
+ Paragraph: '內文',
114
+ Bold: '粗體',
115
+ Italic: '斜體',
116
+ Strike: '刪除線',
117
+ Code: '內嵌程式碼',
118
+ Line: '分隔線',
119
+ Blockquote: '引言',
120
+ 'Unordered list': '項目符號清單',
121
+ 'Ordered list': '編號清單',
122
+ Task: '核取方塊清單',
123
+ Indent: '增加縮排',
124
+ Outdent: '減少縮排',
125
+ 'Insert link': '插入超連結',
126
+ 'Insert CodeBlock': '插入程式碼區塊',
127
+ 'Insert table': '插入表格',
128
+ 'Insert image': '插入圖片',
129
+ Heading: '標題',
130
+ 'Image URL': '圖片網址',
131
+ 'Select image file': '選擇圖片檔案',
132
+ 'Choose a file': '選擇一個文件',
133
+ 'No file': '沒有文件',
134
+ Description: '描述',
135
+ OK: '確認',
136
+ More: '更多',
137
+ Cancel: '取消',
138
+ File: '檔案',
139
+ URL: 'URL',
140
+ 'Link text': '超連結文字',
141
+ 'Add row to up': '向上添加行',
142
+ 'Add row to down': '在下方添加行',
143
+ 'Add column to left': '在左側添加列',
144
+ 'Add column to right': '在右側添加列',
145
+ 'Remove row': '刪除行',
146
+ 'Remove column': '刪除列',
147
+ 'Align column to left': '靠左對齊',
148
+ 'Align column to center': '置中',
149
+ 'Align column to right': '靠右對齊',
150
+ 'Remove table': '刪除表格',
151
+ 'Would you like to paste as table?': '您要以表格貼上嗎?',
152
+ 'Text color': '文字顏色',
153
+ 'Auto scroll enabled': '已啟用自動滾動',
154
+ 'Auto scroll disabled': '已停用自動滾動',
155
+ 'Choose language': '選擇語言',
156
+ });
157
+
158
+ }();
159
+ /******/ return __webpack_exports__;
160
+ /******/ })()
161
+ ;
162
+ });
@@ -0,0 +1,474 @@
1
+ @charset "utf-8";
2
+ .toastui-editor-dark.toastui-editor-defaultUI {
3
+ border-color: #494c56;
4
+ color: #eee;
5
+ }
6
+
7
+ .toastui-editor-dark .toastui-editor-md-container,
8
+ .toastui-editor-dark .toastui-editor-ww-container {
9
+ background-color: #121212;
10
+ }
11
+
12
+ .toastui-editor-dark .toastui-editor-defaultUI-toolbar {
13
+ background-color: #232428;
14
+ border-bottom-color: #303238;
15
+ }
16
+
17
+ .toastui-editor-dark .toastui-editor-toolbar-icons {
18
+ background-position-y: -49px;
19
+ border-color: #232428;
20
+ }
21
+
22
+ .toastui-editor-dark .toastui-editor-toolbar-icons:not(:disabled):hover {
23
+ background-color: #36383f;
24
+ border-color: #36383f;
25
+ }
26
+
27
+ .toastui-editor-dark .toastui-editor-toolbar-divider {
28
+ background-color: #303238;
29
+ }
30
+
31
+ .toastui-editor-dark .toastui-editor-tooltip {
32
+ background-color: #535662;
33
+ }
34
+
35
+ .toastui-editor-dark .toastui-editor-tooltip .arrow {
36
+ background-color: #535662;
37
+ }
38
+
39
+ .toastui-editor-dark .toastui-editor-defaultUI-toolbar .scroll-sync::before {
40
+ color: #8f939f;
41
+ }
42
+
43
+ .toastui-editor-dark .toastui-editor-defaultUI-toolbar .scroll-sync.active::before {
44
+ color: #67ccff;
45
+ }
46
+
47
+ .toastui-editor-dark .toastui-editor-defaultUI-toolbar .switch {
48
+ background-color: #2b4455;
49
+ }
50
+
51
+ .toastui-editor-dark .toastui-editor-defaultUI-toolbar input:checked + .switch {
52
+ background-color: #2b4455;
53
+ }
54
+
55
+ .toastui-editor-dark .toastui-editor-defaultUI-toolbar .switch::before {
56
+ background-color: #8f939f;
57
+ }
58
+
59
+ .toastui-editor-dark .toastui-editor-defaultUI-toolbar input:checked + .switch::before {
60
+ background-color: #67ccff;
61
+ }
62
+
63
+ .toastui-editor-dark .toastui-editor-main .toastui-editor-md-splitter {
64
+ background-color: #303238;
65
+ }
66
+
67
+ .toastui-editor-dark .toastui-editor-mode-switch {
68
+ border-top-color: #393b42;
69
+ background-color: #121212;
70
+ }
71
+
72
+ .toastui-editor-dark .toastui-editor-mode-switch .tab-item {
73
+ border-color: #393b42;
74
+ background-color: #232428;
75
+ color: #757a86;
76
+ }
77
+
78
+ .toastui-editor-dark .toastui-editor-mode-switch .tab-item.active {
79
+ border-top-color: #121212;
80
+ background-color: #121212;
81
+ color: #eee;
82
+ }
83
+
84
+ .toastui-editor-dark .toastui-editor-popup,
85
+ .toastui-editor-dark .toastui-editor-context-menu {
86
+ background-color: #121212;
87
+ box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
88
+ border-color: #494c56;
89
+ }
90
+
91
+ .toastui-editor-dark .toastui-editor-popup-add-heading ul li:hover {
92
+ background-color: #36383f;
93
+ }
94
+
95
+ .toastui-editor-dark .toastui-editor-popup-body label {
96
+ color: #9a9da3;
97
+ }
98
+
99
+ .toastui-editor-dark .toastui-editor-popup-body input[type='text'] {
100
+ background-color: transparent;
101
+ color: #eee;
102
+ border-color: #303238;
103
+ }
104
+
105
+ .toastui-editor-dark .toastui-editor-popup-body input[type='text']:focus {
106
+ outline-color: #67ccff;
107
+ }
108
+
109
+ .toastui-editor-dark .toastui-editor-popup-body input[type='text'].disabled {
110
+ color: #969aa5;
111
+ border-color: #303238;
112
+ background-color: rgba(48, 50, 56, 0.4);
113
+ }
114
+
115
+ .toastui-editor-dark .toastui-editor-popup-add-image .toastui-editor-tabs .tab-item {
116
+ border-bottom-color: #292e37;
117
+ color: #eee;
118
+ }
119
+
120
+ .toastui-editor-dark .toastui-editor-popup-add-image .toastui-editor-tabs .tab-item:hover {
121
+ border-bottom-color: #3c424d;
122
+ }
123
+
124
+ .toastui-editor-dark .toastui-editor-popup-add-image .toastui-editor-tabs .tab-item.active {
125
+ color: #67ccff;
126
+ border-bottom-color: #67ccff;
127
+ }
128
+
129
+ .toastui-editor-dark .toastui-editor-popup-body .toastui-editor-file-name {
130
+ border-color: #303238;
131
+ color: #eee;
132
+ }
133
+
134
+ .toastui-editor-dark .toastui-editor-popup-body .toastui-editor-file-select-button {
135
+ border-color: #303238;
136
+ background-color: #232428;
137
+ color: #eee;
138
+ }
139
+
140
+ .toastui-editor-dark .toastui-editor-popup-body .toastui-editor-file-select-button:hover {
141
+ border-color: #494c56;
142
+ }
143
+
144
+ .toastui-editor-dark.toastui-editor-defaultUI .toastui-editor-close-button {
145
+ color: #eee;
146
+ border-color: #303238;
147
+ background-color: #232428;
148
+ }
149
+
150
+ .toastui-editor-dark.toastui-editor-defaultUI .toastui-editor-close-button:hover {
151
+ border-color: #494c56;
152
+ }
153
+
154
+ .toastui-editor-dark.toastui-editor-defaultUI .toastui-editor-ok-button {
155
+ color: #121212;
156
+ background-color: #67ccff;
157
+ }
158
+
159
+ .toastui-editor-dark.toastui-editor-defaultUI .toastui-editor-ok-button:hover {
160
+ color: #121212;
161
+ background-color: #32baff;
162
+ }
163
+
164
+ .toastui-editor-dark .toastui-editor-popup-add-table .toastui-editor-table-cell {
165
+ border-color: #303238;
166
+ background-color: #121212;
167
+ }
168
+
169
+ .toastui-editor-dark .toastui-editor-popup-add-table .toastui-editor-table-cell.header {
170
+ border-color: #303238;
171
+ background-color: #232428;
172
+ }
173
+
174
+ .toastui-editor-dark .toastui-editor-popup-add-table .toastui-editor-table-selection-layer {
175
+ border-color: rgba(103, 204, 255, 0.4);
176
+ background-color: rgba(103, 204, 255, 0.1);
177
+ }
178
+
179
+ .toastui-editor-dark .toastui-editor-popup-add-table .toastui-editor-table-description {
180
+ color: #eee
181
+ }
182
+
183
+ .toastui-editor-dark .toastui-editor-md-tab-container {
184
+ background-color: #232428;
185
+ border-bottom-color: #303238;
186
+ }
187
+
188
+ .toastui-editor-dark .toastui-editor-md-tab-container .tab-item {
189
+ border-color: #393b42;
190
+ background-color: #2d2f34;
191
+ color: #757a86;
192
+ }
193
+
194
+ .toastui-editor-dark .toastui-editor-md-tab-container .tab-item.active {
195
+ border-bottom-color: #121212;
196
+ background-color: #121212;
197
+ color: #eee;
198
+ }
199
+
200
+
201
+ .toastui-editor-dark .toastui-editor-context-menu .menu-group {
202
+ border-bottom-color: #303238;
203
+ color: #eee;
204
+ }
205
+
206
+ .toastui-editor-dark .toastui-editor-context-menu .menu-item span::before {
207
+ background-position-y: -126px;
208
+ }
209
+
210
+ .toastui-editor-dark .toastui-editor-context-menu li:not(.disabled):hover {
211
+ background-color: #36383f;
212
+ }
213
+
214
+ .toastui-editor-dark .toastui-editor-context-menu li.disabled {
215
+ color: #969aa5;
216
+ }
217
+
218
+ .toastui-editor-dark .toastui-editor-dropdown-toolbar {
219
+ border-color: #494c56;
220
+ background-color: #232428;
221
+ }
222
+
223
+ .toastui-editor-dark .ProseMirror,
224
+ .toastui-editor-dark .toastui-editor-contents p,
225
+ .toastui-editor-dark .toastui-editor-contents h1,
226
+ .toastui-editor-dark .toastui-editor-contents h2,
227
+ .toastui-editor-dark .toastui-editor-contents h3,
228
+ .toastui-editor-dark .toastui-editor-contents h4,
229
+ .toastui-editor-dark .toastui-editor-contents h5,
230
+ .toastui-editor-dark .toastui-editor-contents h6 {
231
+ color: #fff;
232
+ }
233
+
234
+ .toastui-editor-dark .toastui-editor-contents h1,
235
+ .toastui-editor-dark .toastui-editor-contents h2 {
236
+ border-color: #fff;
237
+ }
238
+
239
+ .toastui-editor-dark .toastui-editor-contents del {
240
+ color: #777980;
241
+ }
242
+
243
+ .toastui-editor-dark .toastui-editor-contents blockquote {
244
+ border-color: #303135;
245
+ }
246
+
247
+ .toastui-editor-dark .toastui-editor-contents blockquote p,
248
+ .toastui-editor-dark .toastui-editor-contents blockquote ul,
249
+ .toastui-editor-dark .toastui-editor-contents blockquote ol {
250
+ color: #777980;
251
+ }
252
+
253
+ .toastui-editor-dark .toastui-editor-contents pre {
254
+ background-color: #232428;
255
+ }
256
+
257
+ .toastui-editor-dark .toastui-editor-contents pre code {
258
+ background-color: transparent;
259
+ color: #fff;
260
+ }
261
+
262
+ .toastui-editor-dark .toastui-editor-contents code {
263
+ color: #c1798b;
264
+ background-color: #35262a;
265
+ }
266
+
267
+ .toastui-editor-dark .toastui-editor-contents div {
268
+ color: #fff;
269
+ }
270
+
271
+ .toastui-editor-dark .toastui-editor-ww-code-block-language {
272
+ border-color: #303238;
273
+ background-color: #121212;
274
+ }
275
+
276
+ .toastui-editor-dark .toastui-editor-ww-code-block-language input {
277
+ color: #fff;
278
+ }
279
+
280
+ .toastui-editor-dark .toastui-editor-contents .toastui-editor-ww-code-block:after {
281
+ background-color: #232428;
282
+ border: 1px solid #393b42;
283
+ color: #eee;
284
+ background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjIuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuugiOydtOyWtF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMzAgMzAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwIDMwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO2ZpbGw6I2ZmZjt9Cjwvc3R5bGU+CjxnPgoJPGc+CgkJPGc+CgkJCTxnPgoJCQkJPGc+CgkJCQkJPHBhdGggY2xhc3M9InN0MCIgZD0iTTE1LjUsMTIuNWwyLDJMMTIsMjBoLTJ2LTJMMTUuNSwxMi41eiBNMTgsMTBsMiwybC0xLjUsMS41bC0yLTJMMTgsMTB6Ii8+CgkJCQk8L2c+CgkJCTwvZz4KCQk8L2c+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==');
285
+ }
286
+
287
+ .toastui-editor-dark .toastui-editor-contents .toastui-editor-custom-block-editor {
288
+ background: #392d31;
289
+ color: #fff;
290
+ border-color: #327491;
291
+ }
292
+
293
+ .toastui-editor-dark .toastui-editor-custom-block.ProseMirror-selectednode .toastui-editor-custom-block-view {
294
+ color: #fff;
295
+ border-color: #327491;
296
+ }
297
+
298
+ .toastui-editor-dark .toastui-editor-custom-block-view button {
299
+ background-color: #232428;
300
+ border-color: #393b42;
301
+ background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjIuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuugiOydtOyWtF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMzAgMzAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwIDMwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO2ZpbGw6I2ZmZjt9Cjwvc3R5bGU+CjxnPgoJPGc+CgkJPGc+CgkJCTxnPgoJCQkJPGc+CgkJCQkJPHBhdGggY2xhc3M9InN0MCIgZD0iTTE1LjUsMTIuNWwyLDJMMTIsMjBoLTJ2LTJMMTUuNSwxMi41eiBNMTgsMTBsMiwybC0xLjUsMS41bC0yLTJMMTgsMTB6Ii8+CgkJCQk8L2c+CgkJCTwvZz4KCQk8L2c+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==');
302
+ }
303
+
304
+ .toastui-editor-dark .toastui-editor-custom-block-view button:hover {
305
+ background-color: #232428;
306
+ border-color: #595c68;
307
+ }
308
+
309
+ .toastui-editor-dark .toastui-editor-custom-block-view .info {
310
+ color: #65acca;
311
+ }
312
+
313
+ .toastui-editor-dark .toastui-editor-contents table {
314
+ border-color: #303238;
315
+ }
316
+
317
+ .toastui-editor-dark .toastui-editor-contents table th,
318
+ .toastui-editor-dark .toastui-editor-contents table td {
319
+ border-color: #303238;
320
+ }
321
+
322
+ .toastui-editor-dark .toastui-editor-contents table th {
323
+ background-color: #3a3c42;
324
+ }
325
+
326
+ .toastui-editor-dark .toastui-editor-contents table td,
327
+ .toastui-editor-dark .toastui-editor-contents table td p {
328
+ color: #fff;
329
+ }
330
+
331
+ .toastui-editor-dark .toastui-editor-contents td.toastui-editor-cell-selected {
332
+ background-color: rgba(103, 204, 255, 0.5);
333
+ }
334
+
335
+ .toastui-editor-dark .toastui-editor-contents th.toastui-editor-cell-selected {
336
+ background-color: rgba(103, 204, 255, 0.3);
337
+ }
338
+
339
+ .toastui-editor-dark table.ProseMirror-selectednode {
340
+ outline-color: #67ccff;
341
+ }
342
+
343
+ .toastui-editor-dark .html-block.ProseMirror-selectednode {
344
+ outline-color: #67ccff;
345
+ }
346
+
347
+ .toastui-editor-dark .toastui-editor-contents ul,
348
+ .toastui-editor-dark .toastui-editor-contents menu,
349
+ .toastui-editor-dark .toastui-editor-contents ol,
350
+ .toastui-editor-dark .toastui-editor-contents dir {
351
+ color: #55575f;
352
+ }
353
+
354
+ .toastui-editor-dark .toastui-editor-contents ul > li::before {
355
+ background-color: #55575f;
356
+ }
357
+
358
+ .toastui-editor-dark .toastui-editor-contents hr {
359
+ border-color: #55575f;
360
+ }
361
+
362
+ .toastui-editor-dark .toastui-editor-contents a {
363
+ color: #4b96e6;
364
+ }
365
+
366
+ .toastui-editor-dark .toastui-editor-contents a:hover {
367
+ color: #1f70de;
368
+ }
369
+
370
+ .toastui-editor-dark .toastui-editor-contents .image-link:hover::before {
371
+ border-color: #393b42;
372
+ background-color: #232428;
373
+ background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj4KICAgICAgICA8ZyBzdHJva2U9IiNFRUUiIHN0cm9rZS13aWR0aD0iMS41Ij4KICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICA8Zz4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNNy42NjUgMTUuMDdsLTEuODE5LS4wMDJjLTEuNDg2IDAtMi42OTItMS4yMjgtMi42OTItMi43NDR2LS4xOTJjMC0xLjUxNSAxLjIwNi0yLjc0NCAyLjY5Mi0yLjc0NGgzLjg0NmMxLjQ4NyAwIDIuNjkyIDEuMjI5IDIuNjkyIDIuNzQ0di4xOTIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMDQ1IC0xNzQzKSB0cmFuc2xhdGUoMTA0MCAxNzM4KSB0cmFuc2xhdGUoNSA1KSBzY2FsZSgxIC0xKSByb3RhdGUoNDUgMzcuMjkzIDApIi8+CiAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTEyLjMyNiA0LjkzNGwxLjgyMi4wMDJjMS40ODcgMCAyLjY5MyAxLjIyOCAyLjY5MyAyLjc0NHYuMTkyYzAgMS41MTUtMS4yMDYgMi43NDQtMi42OTMgMi43NDRoLTMuODQ1Yy0xLjQ4NyAwLTIuNjkyLTEuMjI5LTIuNjkyLTIuNzQ0VjcuNjgiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMDQ1IC0xNzQzKSB0cmFuc2xhdGUoMTA0MCAxNzM4KSB0cmFuc2xhdGUoNSA1KSBzY2FsZSgxIC0xKSByb3RhdGUoNDUgMzAuOTk2IDApIi8+CiAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPgo=');
374
+ box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
375
+ }
376
+
377
+ .toastui-editor-dark .toastui-editor-contents .task-list-item::before {
378
+ background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgc3Ryb2tlPSIjNTU1NzVGIj4KICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTAzMCAtMzE2KSB0cmFuc2xhdGUoNzg4IDE5MikgdHJhbnNsYXRlKDI0MiAxMjQpIj4KICAgICAgICAgICAgICAgICAgICA8cmVjdCB3aWR0aD0iMTciIGhlaWdodD0iMTciIHg9Ii41IiB5PSIuNSIgcng9IjIiLz4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+Cg==');
379
+ background-color: transparent;
380
+ }
381
+
382
+ .toastui-editor-dark .toastui-editor-contents .task-list-item.checked::before {
383
+ background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgZmlsbD0iIzRCOTZFNiI+CiAgICAgICAgICAgIDxnPgogICAgICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTE2IDBjMS4xMDUgMCAyIC44OTUgMiAydjE0YzAgMS4xMDUtLjg5NSAyLTIgMkgyYy0xLjEwNSAwLTItLjg5NS0yLTJWMkMwIC44OTUuODk1IDAgMiAwaDE0em0tMS43OTMgNS4yOTNjLS4zOS0uMzktMS4wMjQtLjM5LTEuNDE0IDBMNy41IDEwLjU4NSA1LjIwNyA4LjI5M2wtLjA5NC0uMDgzYy0uMzkyLS4zMDUtLjk2LS4yNzgtMS4zMi4wODMtLjM5LjM5LS4zOSAxLjAyNCAwIDEuNDE0bDMgMyAuMDk0LjA4M2MuMzkyLjMwNS45Ni4yNzggMS4zMi0uMDgzbDYtNiAuMDgzLS4wOTRjLjMwNS0uMzkyLjI3OC0uOTYtLjA4My0xLjMyeiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEwNTAgLTI5NikgdHJhbnNsYXRlKDc4OCAxOTIpIHRyYW5zbGF0ZSgyNjIgMTA0KSIvPgogICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4K');
384
+ }
385
+
386
+ .toastui-editor-dark .toastui-editor-md-delimiter,
387
+ .toastui-editor-dark .toastui-editor-md-code.toastui-editor-md-delimiter,
388
+ .toastui-editor-dark .toastui-editor-md-thematic-break,
389
+ .toastui-editor-dark .toastui-editor-md-link,
390
+ .toastui-editor-dark .toastui-editor-md-table,
391
+ .toastui-editor-dark .toastui-editor-md-block-quote {
392
+ color: #55575f;
393
+ }
394
+
395
+ .toastui-editor-dark .toastui-editor-md-meta,
396
+ .toastui-editor-dark .toastui-editor-md-html {
397
+ color: #55575f;
398
+ }
399
+
400
+ .toastui-editor-dark .toastui-editor-md-link.toastui-editor-md-link-url.toastui-editor-md-marked-text {
401
+ color: #777980;
402
+ }
403
+
404
+ .toastui-editor-dark .toastui-editor-md-block-quote .toastui-editor-md-marked-text,
405
+ .toastui-editor-dark .toastui-editor-md-list-item .toastui-editor-md-meta {
406
+ color: #b3b5bc;
407
+ }
408
+
409
+ .toastui-editor-dark .toastui-editor-md-link.toastui-editor-md-link-desc.toastui-editor-md-marked-text,
410
+ .toastui-editor-dark .toastui-editor-md-list-item-style.toastui-editor-md-list-item-odd {
411
+ color: #4b96e6;
412
+ }
413
+
414
+ .toastui-editor-dark .toastui-editor-md-list-item-style.toastui-editor-md-list-item-even {
415
+ color: #ef6767;
416
+ }
417
+
418
+ .toastui-editor-dark .toastui-editor-md-table .toastui-editor-md-table-cell {
419
+ color: #fff;
420
+ }
421
+
422
+ .toastui-editor-dark .toastui-editor-md-code.toastui-editor-md-marked-text {
423
+ color: #c1798b;
424
+ }
425
+
426
+ .toastui-editor-dark .toastui-editor-md-code {
427
+ background-color: #35262a;
428
+ }
429
+
430
+ .toastui-editor-dark .toastui-editor-md-code-block-line-background {
431
+ background-color: #232428;
432
+ }
433
+
434
+ .toastui-editor-dark .toastui-editor-md-code-block .toastui-editor-md-meta {
435
+ color: #aaa;
436
+ }
437
+
438
+ .toastui-editor-dark .toastui-editor-md-custom-block {
439
+ color: #fff;
440
+ }
441
+
442
+ .toastui-editor-dark .toastui-editor-md-custom-block-line-background {
443
+ background-color: #392d31;
444
+ }
445
+
446
+ .toastui-editor-dark .toastui-editor-md-custom-block .toastui-editor-md-delimiter {
447
+ color: #327491;
448
+ }
449
+
450
+ .toastui-editor-dark .toastui-editor-md-custom-block .toastui-editor-md-meta {
451
+ color: #65acca;
452
+ }
453
+
454
+ .toastui-editor-dark .toastui-editor-contents .toastui-editor-md-preview-highlight::after {
455
+ background-color: rgba(255, 250, 193, 0.5);
456
+ }
457
+
458
+ .toastui-editor-dark .toastui-editor-contents th.toastui-editor-md-preview-highlight,
459
+ .toastui-editor-dark .toastui-editor-contents td.toastui-editor-md-preview-highlight {
460
+ background-color: rgba(255, 250, 193, 0.5);
461
+ }
462
+
463
+ .toastui-editor-dark .toastui-editor-contents th.toastui-editor-md-preview-highlight {
464
+ color: #fff;
465
+ }
466
+
467
+ .toastui-editor-dark .toastui-editor-contents th.toastui-editor-md-preview-highlight,
468
+ .toastui-editor-dark .toastui-editor-contents td.toastui-editor-md-preview-highlight {
469
+ background-color: rgba(255, 250, 193, 0.25);
470
+ }
471
+
472
+ .toastui-editor-dark .toastui-editor-contents .toastui-editor-md-preview-highlight::after {
473
+ background-color: rgba(255, 250, 193, 0.25);
474
+ }