@tachybase/plugin-field-markdown-vditor 0.23.8

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 (558) hide show
  1. package/.turbo/turbo-build.log +16 -0
  2. package/README.md +1 -0
  3. package/build.config.ts +15 -0
  4. package/client.d.ts +2 -0
  5. package/client.js +1 -0
  6. package/dist/client/components/Display.d.ts +2 -0
  7. package/dist/client/components/Edit.d.ts +2 -0
  8. package/dist/client/components/const.d.ts +1 -0
  9. package/dist/client/components/index.d.ts +2 -0
  10. package/dist/client/components/style.d.ts +2 -0
  11. package/dist/client/index.d.ts +10 -0
  12. package/dist/client/index.js +285 -0
  13. package/dist/client/interfaces/markdown-vditor.d.ts +91 -0
  14. package/dist/client/locale/index.d.ts +1 -0
  15. package/dist/client/utils/index.d.ts +0 -0
  16. package/dist/client/vditor/dist/css/content-theme/ant-design.css +210 -0
  17. package/dist/client/vditor/dist/css/content-theme/dark.css +123 -0
  18. package/dist/client/vditor/dist/css/content-theme/light.css +101 -0
  19. package/dist/client/vditor/dist/css/content-theme/wechat.css +94 -0
  20. package/dist/client/vditor/dist/images/emoji/b3log.png +0 -0
  21. package/dist/client/vditor/dist/images/emoji/chainbook.png +0 -0
  22. package/dist/client/vditor/dist/images/emoji/doge.png +0 -0
  23. package/dist/client/vditor/dist/images/emoji/hacpai.png +0 -0
  24. package/dist/client/vditor/dist/images/emoji/huaji.gif +0 -0
  25. package/dist/client/vditor/dist/images/emoji/latke.png +0 -0
  26. package/dist/client/vditor/dist/images/emoji/liandi.png +0 -0
  27. package/dist/client/vditor/dist/images/emoji/lute.png +0 -0
  28. package/dist/client/vditor/dist/images/emoji/octocat.png +0 -0
  29. package/dist/client/vditor/dist/images/emoji/pipe.png +0 -0
  30. package/dist/client/vditor/dist/images/emoji/siyuan.png +0 -0
  31. package/dist/client/vditor/dist/images/emoji/solo.png +0 -0
  32. package/dist/client/vditor/dist/images/emoji/sym.png +0 -0
  33. package/dist/client/vditor/dist/images/emoji/trollface.png +0 -0
  34. package/dist/client/vditor/dist/images/emoji/vditor.png +0 -0
  35. package/dist/client/vditor/dist/images/emoji/wide.png +0 -0
  36. package/dist/client/vditor/dist/images/emoji/wulian.png +0 -0
  37. package/dist/client/vditor/dist/images/img-loading.svg +1 -0
  38. package/dist/client/vditor/dist/images/logo.png +0 -0
  39. package/dist/client/vditor/dist/index.css +1817 -0
  40. package/dist/client/vditor/dist/index.d.ts +79 -0
  41. package/dist/client/vditor/dist/index.js +15858 -0
  42. package/dist/client/vditor/dist/index.min.js +1 -0
  43. package/dist/client/vditor/dist/js/abcjs/abcjs_basic.min.js +3 -0
  44. package/dist/client/vditor/dist/js/echarts/echarts.min.js +45 -0
  45. package/dist/client/vditor/dist/js/flowchart.js/flowchart.min.js +8 -0
  46. package/dist/client/vditor/dist/js/graphviz/full.render.js +90 -0
  47. package/dist/client/vditor/dist/js/graphviz/viz.js +333 -0
  48. package/dist/client/vditor/dist/js/highlight.js/LICENSE +29 -0
  49. package/dist/client/vditor/dist/js/highlight.js/highlight.min.js +3835 -0
  50. package/dist/client/vditor/dist/js/highlight.js/styles/a11y-dark.min.css +7 -0
  51. package/dist/client/vditor/dist/js/highlight.js/styles/a11y-light.min.css +7 -0
  52. package/dist/client/vditor/dist/js/highlight.js/styles/agate.min.css +20 -0
  53. package/dist/client/vditor/dist/js/highlight.js/styles/an-old-hope.min.css +9 -0
  54. package/dist/client/vditor/dist/js/highlight.js/styles/androidstudio.min.css +1 -0
  55. package/dist/client/vditor/dist/js/highlight.js/styles/ant-design.min.css +84 -0
  56. package/dist/client/vditor/dist/js/highlight.js/styles/arduino-light.min.css +1 -0
  57. package/dist/client/vditor/dist/js/highlight.js/styles/arta.min.css +1 -0
  58. package/dist/client/vditor/dist/js/highlight.js/styles/ascetic.min.css +1 -0
  59. package/dist/client/vditor/dist/js/highlight.js/styles/atom-one-dark-reasonable.min.css +1 -0
  60. package/dist/client/vditor/dist/js/highlight.js/styles/atom-one-dark.min.css +1 -0
  61. package/dist/client/vditor/dist/js/highlight.js/styles/atom-one-light.min.css +1 -0
  62. package/dist/client/vditor/dist/js/highlight.js/styles/base16/3024.min.css +7 -0
  63. package/dist/client/vditor/dist/js/highlight.js/styles/base16/apathy.min.css +7 -0
  64. package/dist/client/vditor/dist/js/highlight.js/styles/base16/apprentice.min.css +7 -0
  65. package/dist/client/vditor/dist/js/highlight.js/styles/base16/ashes.min.css +7 -0
  66. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-cave-light.min.css +7 -0
  67. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-cave.min.css +7 -0
  68. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-dune-light.min.css +7 -0
  69. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-dune.min.css +7 -0
  70. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-estuary-light.min.css +7 -0
  71. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-estuary.min.css +7 -0
  72. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-forest-light.min.css +7 -0
  73. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-forest.min.css +7 -0
  74. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-heath-light.min.css +7 -0
  75. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-heath.min.css +7 -0
  76. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-lakeside-light.min.css +7 -0
  77. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-lakeside.min.css +7 -0
  78. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-plateau-light.min.css +7 -0
  79. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-plateau.min.css +7 -0
  80. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-savanna-light.min.css +7 -0
  81. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-savanna.min.css +7 -0
  82. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-seaside-light.min.css +7 -0
  83. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-seaside.min.css +7 -0
  84. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-sulphurpool-light.min.css +7 -0
  85. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atelier-sulphurpool.min.css +7 -0
  86. package/dist/client/vditor/dist/js/highlight.js/styles/base16/atlas.min.css +7 -0
  87. package/dist/client/vditor/dist/js/highlight.js/styles/base16/bespin.min.css +7 -0
  88. package/dist/client/vditor/dist/js/highlight.js/styles/base16/black-metal-bathory.min.css +7 -0
  89. package/dist/client/vditor/dist/js/highlight.js/styles/base16/black-metal-burzum.min.css +7 -0
  90. package/dist/client/vditor/dist/js/highlight.js/styles/base16/black-metal-dark-funeral.min.css +7 -0
  91. package/dist/client/vditor/dist/js/highlight.js/styles/base16/black-metal-gorgoroth.min.css +7 -0
  92. package/dist/client/vditor/dist/js/highlight.js/styles/base16/black-metal-immortal.min.css +7 -0
  93. package/dist/client/vditor/dist/js/highlight.js/styles/base16/black-metal-khold.min.css +7 -0
  94. package/dist/client/vditor/dist/js/highlight.js/styles/base16/black-metal-marduk.min.css +7 -0
  95. package/dist/client/vditor/dist/js/highlight.js/styles/base16/black-metal-mayhem.min.css +7 -0
  96. package/dist/client/vditor/dist/js/highlight.js/styles/base16/black-metal-nile.min.css +7 -0
  97. package/dist/client/vditor/dist/js/highlight.js/styles/base16/black-metal-venom.min.css +7 -0
  98. package/dist/client/vditor/dist/js/highlight.js/styles/base16/black-metal.min.css +7 -0
  99. package/dist/client/vditor/dist/js/highlight.js/styles/base16/brewer.min.css +7 -0
  100. package/dist/client/vditor/dist/js/highlight.js/styles/base16/bright.min.css +7 -0
  101. package/dist/client/vditor/dist/js/highlight.js/styles/base16/brogrammer.min.css +7 -0
  102. package/dist/client/vditor/dist/js/highlight.js/styles/base16/brush-trees-dark.min.css +7 -0
  103. package/dist/client/vditor/dist/js/highlight.js/styles/base16/brush-trees.min.css +7 -0
  104. package/dist/client/vditor/dist/js/highlight.js/styles/base16/chalk.min.css +7 -0
  105. package/dist/client/vditor/dist/js/highlight.js/styles/base16/circus.min.css +7 -0
  106. package/dist/client/vditor/dist/js/highlight.js/styles/base16/classic-dark.min.css +7 -0
  107. package/dist/client/vditor/dist/js/highlight.js/styles/base16/classic-light.min.css +7 -0
  108. package/dist/client/vditor/dist/js/highlight.js/styles/base16/codeschool.min.css +7 -0
  109. package/dist/client/vditor/dist/js/highlight.js/styles/base16/colors.min.css +7 -0
  110. package/dist/client/vditor/dist/js/highlight.js/styles/base16/cupcake.min.css +7 -0
  111. package/dist/client/vditor/dist/js/highlight.js/styles/base16/cupertino.min.css +7 -0
  112. package/dist/client/vditor/dist/js/highlight.js/styles/base16/danqing.min.css +7 -0
  113. package/dist/client/vditor/dist/js/highlight.js/styles/base16/darcula.min.css +7 -0
  114. package/dist/client/vditor/dist/js/highlight.js/styles/base16/dark-violet.min.css +7 -0
  115. package/dist/client/vditor/dist/js/highlight.js/styles/base16/darkmoss.min.css +7 -0
  116. package/dist/client/vditor/dist/js/highlight.js/styles/base16/darktooth.min.css +7 -0
  117. package/dist/client/vditor/dist/js/highlight.js/styles/base16/decaf.min.css +7 -0
  118. package/dist/client/vditor/dist/js/highlight.js/styles/base16/default-dark.min.css +7 -0
  119. package/dist/client/vditor/dist/js/highlight.js/styles/base16/default-light.min.css +7 -0
  120. package/dist/client/vditor/dist/js/highlight.js/styles/base16/dirtysea.min.css +7 -0
  121. package/dist/client/vditor/dist/js/highlight.js/styles/base16/dracula.min.css +7 -0
  122. package/dist/client/vditor/dist/js/highlight.js/styles/base16/edge-dark.min.css +7 -0
  123. package/dist/client/vditor/dist/js/highlight.js/styles/base16/edge-light.min.css +7 -0
  124. package/dist/client/vditor/dist/js/highlight.js/styles/base16/eighties.min.css +7 -0
  125. package/dist/client/vditor/dist/js/highlight.js/styles/base16/embers.min.css +7 -0
  126. package/dist/client/vditor/dist/js/highlight.js/styles/base16/equilibrium-dark.min.css +7 -0
  127. package/dist/client/vditor/dist/js/highlight.js/styles/base16/equilibrium-gray-dark.min.css +7 -0
  128. package/dist/client/vditor/dist/js/highlight.js/styles/base16/equilibrium-gray-light.min.css +7 -0
  129. package/dist/client/vditor/dist/js/highlight.js/styles/base16/equilibrium-light.min.css +7 -0
  130. package/dist/client/vditor/dist/js/highlight.js/styles/base16/espresso.min.css +7 -0
  131. package/dist/client/vditor/dist/js/highlight.js/styles/base16/eva-dim.min.css +7 -0
  132. package/dist/client/vditor/dist/js/highlight.js/styles/base16/eva.min.css +7 -0
  133. package/dist/client/vditor/dist/js/highlight.js/styles/base16/flat.min.css +7 -0
  134. package/dist/client/vditor/dist/js/highlight.js/styles/base16/framer.min.css +7 -0
  135. package/dist/client/vditor/dist/js/highlight.js/styles/base16/fruit-soda.min.css +7 -0
  136. package/dist/client/vditor/dist/js/highlight.js/styles/base16/gigavolt.min.css +7 -0
  137. package/dist/client/vditor/dist/js/highlight.js/styles/base16/github.min.css +7 -0
  138. package/dist/client/vditor/dist/js/highlight.js/styles/base16/google-dark.min.css +7 -0
  139. package/dist/client/vditor/dist/js/highlight.js/styles/base16/google-light.min.css +7 -0
  140. package/dist/client/vditor/dist/js/highlight.js/styles/base16/grayscale-dark.min.css +7 -0
  141. package/dist/client/vditor/dist/js/highlight.js/styles/base16/grayscale-light.min.css +7 -0
  142. package/dist/client/vditor/dist/js/highlight.js/styles/base16/green-screen.min.css +7 -0
  143. package/dist/client/vditor/dist/js/highlight.js/styles/base16/gruvbox-dark-hard.min.css +7 -0
  144. package/dist/client/vditor/dist/js/highlight.js/styles/base16/gruvbox-dark-medium.min.css +7 -0
  145. package/dist/client/vditor/dist/js/highlight.js/styles/base16/gruvbox-dark-pale.min.css +7 -0
  146. package/dist/client/vditor/dist/js/highlight.js/styles/base16/gruvbox-dark-soft.min.css +7 -0
  147. package/dist/client/vditor/dist/js/highlight.js/styles/base16/gruvbox-light-hard.min.css +7 -0
  148. package/dist/client/vditor/dist/js/highlight.js/styles/base16/gruvbox-light-medium.min.css +7 -0
  149. package/dist/client/vditor/dist/js/highlight.js/styles/base16/gruvbox-light-soft.min.css +7 -0
  150. package/dist/client/vditor/dist/js/highlight.js/styles/base16/hardcore.min.css +7 -0
  151. package/dist/client/vditor/dist/js/highlight.js/styles/base16/harmonic16-dark.min.css +7 -0
  152. package/dist/client/vditor/dist/js/highlight.js/styles/base16/harmonic16-light.min.css +7 -0
  153. package/dist/client/vditor/dist/js/highlight.js/styles/base16/heetch-dark.min.css +7 -0
  154. package/dist/client/vditor/dist/js/highlight.js/styles/base16/heetch-light.min.css +7 -0
  155. package/dist/client/vditor/dist/js/highlight.js/styles/base16/helios.min.css +7 -0
  156. package/dist/client/vditor/dist/js/highlight.js/styles/base16/hopscotch.min.css +7 -0
  157. package/dist/client/vditor/dist/js/highlight.js/styles/base16/horizon-dark.min.css +7 -0
  158. package/dist/client/vditor/dist/js/highlight.js/styles/base16/horizon-light.min.css +7 -0
  159. package/dist/client/vditor/dist/js/highlight.js/styles/base16/humanoid-dark.min.css +7 -0
  160. package/dist/client/vditor/dist/js/highlight.js/styles/base16/humanoid-light.min.css +7 -0
  161. package/dist/client/vditor/dist/js/highlight.js/styles/base16/ia-dark.min.css +7 -0
  162. package/dist/client/vditor/dist/js/highlight.js/styles/base16/ia-light.min.css +7 -0
  163. package/dist/client/vditor/dist/js/highlight.js/styles/base16/icy-dark.min.css +7 -0
  164. package/dist/client/vditor/dist/js/highlight.js/styles/base16/ir-black.min.css +7 -0
  165. package/dist/client/vditor/dist/js/highlight.js/styles/base16/isotope.min.css +7 -0
  166. package/dist/client/vditor/dist/js/highlight.js/styles/base16/kimber.min.css +7 -0
  167. package/dist/client/vditor/dist/js/highlight.js/styles/base16/london-tube.min.css +7 -0
  168. package/dist/client/vditor/dist/js/highlight.js/styles/base16/macintosh.min.css +7 -0
  169. package/dist/client/vditor/dist/js/highlight.js/styles/base16/marrakesh.min.css +7 -0
  170. package/dist/client/vditor/dist/js/highlight.js/styles/base16/materia.min.css +7 -0
  171. package/dist/client/vditor/dist/js/highlight.js/styles/base16/material-darker.min.css +7 -0
  172. package/dist/client/vditor/dist/js/highlight.js/styles/base16/material-lighter.min.css +7 -0
  173. package/dist/client/vditor/dist/js/highlight.js/styles/base16/material-palenight.min.css +7 -0
  174. package/dist/client/vditor/dist/js/highlight.js/styles/base16/material-vivid.min.css +7 -0
  175. package/dist/client/vditor/dist/js/highlight.js/styles/base16/material.min.css +7 -0
  176. package/dist/client/vditor/dist/js/highlight.js/styles/base16/mellow-purple.min.css +7 -0
  177. package/dist/client/vditor/dist/js/highlight.js/styles/base16/mexico-light.min.css +7 -0
  178. package/dist/client/vditor/dist/js/highlight.js/styles/base16/mocha.min.css +7 -0
  179. package/dist/client/vditor/dist/js/highlight.js/styles/base16/monokai.min.css +7 -0
  180. package/dist/client/vditor/dist/js/highlight.js/styles/base16/nebula.min.css +7 -0
  181. package/dist/client/vditor/dist/js/highlight.js/styles/base16/nord.min.css +7 -0
  182. package/dist/client/vditor/dist/js/highlight.js/styles/base16/nova.min.css +7 -0
  183. package/dist/client/vditor/dist/js/highlight.js/styles/base16/ocean.min.css +7 -0
  184. package/dist/client/vditor/dist/js/highlight.js/styles/base16/oceanicnext.min.css +7 -0
  185. package/dist/client/vditor/dist/js/highlight.js/styles/base16/one-light.min.css +7 -0
  186. package/dist/client/vditor/dist/js/highlight.js/styles/base16/onedark.min.css +7 -0
  187. package/dist/client/vditor/dist/js/highlight.js/styles/base16/outrun-dark.min.css +7 -0
  188. package/dist/client/vditor/dist/js/highlight.js/styles/base16/papercolor-dark.min.css +7 -0
  189. package/dist/client/vditor/dist/js/highlight.js/styles/base16/papercolor-light.min.css +7 -0
  190. package/dist/client/vditor/dist/js/highlight.js/styles/base16/paraiso.min.css +7 -0
  191. package/dist/client/vditor/dist/js/highlight.js/styles/base16/pasque.min.css +7 -0
  192. package/dist/client/vditor/dist/js/highlight.js/styles/base16/phd.min.css +7 -0
  193. package/dist/client/vditor/dist/js/highlight.js/styles/base16/pico.min.css +7 -0
  194. package/dist/client/vditor/dist/js/highlight.js/styles/base16/pop.min.css +7 -0
  195. package/dist/client/vditor/dist/js/highlight.js/styles/base16/porple.min.css +7 -0
  196. package/dist/client/vditor/dist/js/highlight.js/styles/base16/qualia.min.css +7 -0
  197. package/dist/client/vditor/dist/js/highlight.js/styles/base16/railscasts.min.css +7 -0
  198. package/dist/client/vditor/dist/js/highlight.js/styles/base16/rebecca.min.css +7 -0
  199. package/dist/client/vditor/dist/js/highlight.js/styles/base16/ros-pine-dawn.min.css +7 -0
  200. package/dist/client/vditor/dist/js/highlight.js/styles/base16/ros-pine-moon.min.css +7 -0
  201. package/dist/client/vditor/dist/js/highlight.js/styles/base16/ros-pine.min.css +7 -0
  202. package/dist/client/vditor/dist/js/highlight.js/styles/base16/sagelight.min.css +7 -0
  203. package/dist/client/vditor/dist/js/highlight.js/styles/base16/sandcastle.min.css +7 -0
  204. package/dist/client/vditor/dist/js/highlight.js/styles/base16/seti-ui.min.css +7 -0
  205. package/dist/client/vditor/dist/js/highlight.js/styles/base16/shapeshifter.min.css +7 -0
  206. package/dist/client/vditor/dist/js/highlight.js/styles/base16/silk-dark.min.css +7 -0
  207. package/dist/client/vditor/dist/js/highlight.js/styles/base16/silk-light.min.css +7 -0
  208. package/dist/client/vditor/dist/js/highlight.js/styles/base16/snazzy.min.css +7 -0
  209. package/dist/client/vditor/dist/js/highlight.js/styles/base16/solar-flare-light.min.css +7 -0
  210. package/dist/client/vditor/dist/js/highlight.js/styles/base16/solar-flare.min.css +7 -0
  211. package/dist/client/vditor/dist/js/highlight.js/styles/base16/solarized-dark.min.css +7 -0
  212. package/dist/client/vditor/dist/js/highlight.js/styles/base16/solarized-light.min.css +7 -0
  213. package/dist/client/vditor/dist/js/highlight.js/styles/base16/spacemacs.min.css +7 -0
  214. package/dist/client/vditor/dist/js/highlight.js/styles/base16/summercamp.min.css +7 -0
  215. package/dist/client/vditor/dist/js/highlight.js/styles/base16/summerfruit-dark.min.css +7 -0
  216. package/dist/client/vditor/dist/js/highlight.js/styles/base16/summerfruit-light.min.css +7 -0
  217. package/dist/client/vditor/dist/js/highlight.js/styles/base16/synth-midnight-terminal-dark.min.css +7 -0
  218. package/dist/client/vditor/dist/js/highlight.js/styles/base16/synth-midnight-terminal-light.min.css +7 -0
  219. package/dist/client/vditor/dist/js/highlight.js/styles/base16/tango.min.css +7 -0
  220. package/dist/client/vditor/dist/js/highlight.js/styles/base16/tender.min.css +7 -0
  221. package/dist/client/vditor/dist/js/highlight.js/styles/base16/tomorrow-night.min.css +7 -0
  222. package/dist/client/vditor/dist/js/highlight.js/styles/base16/tomorrow.min.css +7 -0
  223. package/dist/client/vditor/dist/js/highlight.js/styles/base16/twilight.min.css +7 -0
  224. package/dist/client/vditor/dist/js/highlight.js/styles/base16/unikitty-dark.min.css +7 -0
  225. package/dist/client/vditor/dist/js/highlight.js/styles/base16/unikitty-light.min.css +7 -0
  226. package/dist/client/vditor/dist/js/highlight.js/styles/base16/vulcan.min.css +7 -0
  227. package/dist/client/vditor/dist/js/highlight.js/styles/base16/windows-10-light.min.css +7 -0
  228. package/dist/client/vditor/dist/js/highlight.js/styles/base16/windows-10.min.css +7 -0
  229. package/dist/client/vditor/dist/js/highlight.js/styles/base16/windows-95-light.min.css +7 -0
  230. package/dist/client/vditor/dist/js/highlight.js/styles/base16/windows-95.min.css +7 -0
  231. package/dist/client/vditor/dist/js/highlight.js/styles/base16/windows-high-contrast-light.min.css +7 -0
  232. package/dist/client/vditor/dist/js/highlight.js/styles/base16/windows-high-contrast.min.css +7 -0
  233. package/dist/client/vditor/dist/js/highlight.js/styles/base16/windows-nt-light.min.css +7 -0
  234. package/dist/client/vditor/dist/js/highlight.js/styles/base16/windows-nt.min.css +7 -0
  235. package/dist/client/vditor/dist/js/highlight.js/styles/base16/woodland.min.css +7 -0
  236. package/dist/client/vditor/dist/js/highlight.js/styles/base16/xcode-dusk.min.css +7 -0
  237. package/dist/client/vditor/dist/js/highlight.js/styles/base16/zenburn.min.css +7 -0
  238. package/dist/client/vditor/dist/js/highlight.js/styles/brown-paper.min.css +1 -0
  239. package/dist/client/vditor/dist/js/highlight.js/styles/brown-papersq.png +0 -0
  240. package/dist/client/vditor/dist/js/highlight.js/styles/codepen-embed.min.css +1 -0
  241. package/dist/client/vditor/dist/js/highlight.js/styles/color-brewer.min.css +1 -0
  242. package/dist/client/vditor/dist/js/highlight.js/styles/dark.min.css +1 -0
  243. package/dist/client/vditor/dist/js/highlight.js/styles/default.min.css +9 -0
  244. package/dist/client/vditor/dist/js/highlight.js/styles/devibeans.min.css +7 -0
  245. package/dist/client/vditor/dist/js/highlight.js/styles/docco.min.css +1 -0
  246. package/dist/client/vditor/dist/js/highlight.js/styles/far.min.css +1 -0
  247. package/dist/client/vditor/dist/js/highlight.js/styles/felipec.min.css +7 -0
  248. package/dist/client/vditor/dist/js/highlight.js/styles/foundation.min.css +1 -0
  249. package/dist/client/vditor/dist/js/highlight.js/styles/github-dark-dimmed.min.css +9 -0
  250. package/dist/client/vditor/dist/js/highlight.js/styles/github-dark.min.css +10 -0
  251. package/dist/client/vditor/dist/js/highlight.js/styles/github.min.css +10 -0
  252. package/dist/client/vditor/dist/js/highlight.js/styles/gml.min.css +1 -0
  253. package/dist/client/vditor/dist/js/highlight.js/styles/googlecode.min.css +1 -0
  254. package/dist/client/vditor/dist/js/highlight.js/styles/gradient-dark.min.css +1 -0
  255. package/dist/client/vditor/dist/js/highlight.js/styles/gradient-light.min.css +1 -0
  256. package/dist/client/vditor/dist/js/highlight.js/styles/grayscale.min.css +1 -0
  257. package/dist/client/vditor/dist/js/highlight.js/styles/hybrid.min.css +1 -0
  258. package/dist/client/vditor/dist/js/highlight.js/styles/idea.min.css +1 -0
  259. package/dist/client/vditor/dist/js/highlight.js/styles/intellij-light.min.css +1 -0
  260. package/dist/client/vditor/dist/js/highlight.js/styles/ir-black.min.css +1 -0
  261. package/dist/client/vditor/dist/js/highlight.js/styles/isbl-editor-dark.min.css +1 -0
  262. package/dist/client/vditor/dist/js/highlight.js/styles/isbl-editor-light.min.css +1 -0
  263. package/dist/client/vditor/dist/js/highlight.js/styles/kimbie-dark.min.css +1 -0
  264. package/dist/client/vditor/dist/js/highlight.js/styles/kimbie-light.min.css +1 -0
  265. package/dist/client/vditor/dist/js/highlight.js/styles/lightfair.min.css +1 -0
  266. package/dist/client/vditor/dist/js/highlight.js/styles/lioshi.min.css +1 -0
  267. package/dist/client/vditor/dist/js/highlight.js/styles/magula.min.css +1 -0
  268. package/dist/client/vditor/dist/js/highlight.js/styles/mono-blue.min.css +1 -0
  269. package/dist/client/vditor/dist/js/highlight.js/styles/monokai-sublime.min.css +1 -0
  270. package/dist/client/vditor/dist/js/highlight.js/styles/monokai.min.css +1 -0
  271. package/dist/client/vditor/dist/js/highlight.js/styles/night-owl.min.css +1 -0
  272. package/dist/client/vditor/dist/js/highlight.js/styles/nnfx-dark.min.css +10 -0
  273. package/dist/client/vditor/dist/js/highlight.js/styles/nnfx-light.min.css +10 -0
  274. package/dist/client/vditor/dist/js/highlight.js/styles/nord.min.css +1 -0
  275. package/dist/client/vditor/dist/js/highlight.js/styles/obsidian.min.css +1 -0
  276. package/dist/client/vditor/dist/js/highlight.js/styles/panda-syntax-dark.min.css +1 -0
  277. package/dist/client/vditor/dist/js/highlight.js/styles/panda-syntax-light.min.css +1 -0
  278. package/dist/client/vditor/dist/js/highlight.js/styles/paraiso-dark.min.css +1 -0
  279. package/dist/client/vditor/dist/js/highlight.js/styles/paraiso-light.min.css +1 -0
  280. package/dist/client/vditor/dist/js/highlight.js/styles/pojoaque.jpg +0 -0
  281. package/dist/client/vditor/dist/js/highlight.js/styles/pojoaque.min.css +1 -0
  282. package/dist/client/vditor/dist/js/highlight.js/styles/purebasic.min.css +1 -0
  283. package/dist/client/vditor/dist/js/highlight.js/styles/qtcreator-dark.min.css +1 -0
  284. package/dist/client/vditor/dist/js/highlight.js/styles/qtcreator-light.min.css +1 -0
  285. package/dist/client/vditor/dist/js/highlight.js/styles/rainbow.min.css +1 -0
  286. package/dist/client/vditor/dist/js/highlight.js/styles/routeros.min.css +1 -0
  287. package/dist/client/vditor/dist/js/highlight.js/styles/school-book.min.css +1 -0
  288. package/dist/client/vditor/dist/js/highlight.js/styles/shades-of-purple.min.css +1 -0
  289. package/dist/client/vditor/dist/js/highlight.js/styles/srcery.min.css +1 -0
  290. package/dist/client/vditor/dist/js/highlight.js/styles/stackoverflow-dark.min.css +13 -0
  291. package/dist/client/vditor/dist/js/highlight.js/styles/stackoverflow-light.min.css +13 -0
  292. package/dist/client/vditor/dist/js/highlight.js/styles/sunburst.min.css +1 -0
  293. package/dist/client/vditor/dist/js/highlight.js/styles/tokyo-night-dark.min.css +8 -0
  294. package/dist/client/vditor/dist/js/highlight.js/styles/tokyo-night-light.min.css +8 -0
  295. package/dist/client/vditor/dist/js/highlight.js/styles/tomorrow-night-blue.min.css +1 -0
  296. package/dist/client/vditor/dist/js/highlight.js/styles/tomorrow-night-bright.min.css +1 -0
  297. package/dist/client/vditor/dist/js/highlight.js/styles/vs.min.css +1 -0
  298. package/dist/client/vditor/dist/js/highlight.js/styles/vs2015.min.css +1 -0
  299. package/dist/client/vditor/dist/js/highlight.js/styles/xcode.min.css +1 -0
  300. package/dist/client/vditor/dist/js/highlight.js/styles/xt256.min.css +1 -0
  301. package/dist/client/vditor/dist/js/highlight.js/third-languages.js +135 -0
  302. package/dist/client/vditor/dist/js/i18n/en_US.js +85 -0
  303. package/dist/client/vditor/dist/js/i18n/fr_FR.js +85 -0
  304. package/dist/client/vditor/dist/js/i18n/ja_JP.js +85 -0
  305. package/dist/client/vditor/dist/js/i18n/ko_KR.js +85 -0
  306. package/dist/client/vditor/dist/js/i18n/pt_BR.js +85 -0
  307. package/dist/client/vditor/dist/js/i18n/ru_RU.js +85 -0
  308. package/dist/client/vditor/dist/js/i18n/sv_SE.js +85 -0
  309. package/dist/client/vditor/dist/js/i18n/zh_CN.js +85 -0
  310. package/dist/client/vditor/dist/js/i18n/zh_TW.js +85 -0
  311. package/dist/client/vditor/dist/js/icons/ant.js +174 -0
  312. package/dist/client/vditor/dist/js/icons/material.js +195 -0
  313. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_AMS-Regular.ttf +0 -0
  314. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_AMS-Regular.woff +0 -0
  315. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_AMS-Regular.woff2 +0 -0
  316. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
  317. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
  318. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
  319. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
  320. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
  321. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
  322. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
  323. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Fraktur-Bold.woff +0 -0
  324. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
  325. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
  326. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Fraktur-Regular.woff +0 -0
  327. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
  328. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Main-Bold.ttf +0 -0
  329. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Main-Bold.woff +0 -0
  330. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Main-Bold.woff2 +0 -0
  331. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
  332. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Main-BoldItalic.woff +0 -0
  333. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
  334. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Main-Italic.ttf +0 -0
  335. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Main-Italic.woff +0 -0
  336. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Main-Italic.woff2 +0 -0
  337. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Main-Regular.ttf +0 -0
  338. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Main-Regular.woff +0 -0
  339. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Main-Regular.woff2 +0 -0
  340. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
  341. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Math-BoldItalic.woff +0 -0
  342. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
  343. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Math-Italic.ttf +0 -0
  344. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Math-Italic.woff +0 -0
  345. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Math-Italic.woff2 +0 -0
  346. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
  347. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_SansSerif-Bold.woff +0 -0
  348. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
  349. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
  350. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_SansSerif-Italic.woff +0 -0
  351. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
  352. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
  353. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_SansSerif-Regular.woff +0 -0
  354. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
  355. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Script-Regular.ttf +0 -0
  356. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Script-Regular.woff +0 -0
  357. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Script-Regular.woff2 +0 -0
  358. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Size1-Regular.ttf +0 -0
  359. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Size1-Regular.woff +0 -0
  360. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Size1-Regular.woff2 +0 -0
  361. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Size2-Regular.ttf +0 -0
  362. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Size2-Regular.woff +0 -0
  363. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Size2-Regular.woff2 +0 -0
  364. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Size3-Regular.ttf +0 -0
  365. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Size3-Regular.woff +0 -0
  366. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Size3-Regular.woff2 +0 -0
  367. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Size4-Regular.ttf +0 -0
  368. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Size4-Regular.woff +0 -0
  369. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Size4-Regular.woff2 +0 -0
  370. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
  371. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Typewriter-Regular.woff +0 -0
  372. package/dist/client/vditor/dist/js/katex/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
  373. package/dist/client/vditor/dist/js/katex/katex.min.css +1 -0
  374. package/dist/client/vditor/dist/js/katex/katex.min.js +1 -0
  375. package/dist/client/vditor/dist/js/katex/mhchem.min.js +1 -0
  376. package/dist/client/vditor/dist/js/lute/lute.min.js +71 -0
  377. package/dist/client/vditor/dist/js/markmap/katex.min.css +1 -0
  378. package/dist/client/vditor/dist/js/markmap/markmap.min.js +8251 -0
  379. package/dist/client/vditor/dist/js/markmap/prism.css +140 -0
  380. package/dist/client/vditor/dist/js/mathjax/LICENSE +202 -0
  381. package/dist/client/vditor/dist/js/mathjax/a11y/assistive-mml.js +1 -0
  382. package/dist/client/vditor/dist/js/mathjax/a11y/complexity.js +1 -0
  383. package/dist/client/vditor/dist/js/mathjax/a11y/explorer.js +1 -0
  384. package/dist/client/vditor/dist/js/mathjax/a11y/semantic-enrich.js +1 -0
  385. package/dist/client/vditor/dist/js/mathjax/input/asciimath.js +1 -0
  386. package/dist/client/vditor/dist/js/mathjax/input/mml/entities.js +1 -0
  387. package/dist/client/vditor/dist/js/mathjax/input/mml.js +1 -0
  388. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/action.js +1 -0
  389. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/all-packages.js +1 -0
  390. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/ams.js +1 -0
  391. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/amscd.js +1 -0
  392. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/autoload.js +1 -0
  393. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/bbox.js +1 -0
  394. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/boldsymbol.js +1 -0
  395. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/braket.js +1 -0
  396. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/bussproofs.js +1 -0
  397. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/cancel.js +1 -0
  398. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/color.js +1 -0
  399. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/colorV2.js +1 -0
  400. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/configMacros.js +1 -0
  401. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/enclose.js +1 -0
  402. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/extpfeil.js +1 -0
  403. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/html.js +1 -0
  404. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/mhchem.js +1 -0
  405. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/newcommand.js +1 -0
  406. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/noerrors.js +1 -0
  407. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/noundefined.js +1 -0
  408. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/physics.js +1 -0
  409. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/require.js +1 -0
  410. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/tagFormat.js +1 -0
  411. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/textmacros.js +1 -0
  412. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/unicode.js +1 -0
  413. package/dist/client/vditor/dist/js/mathjax/input/tex/extensions/verb.js +1 -0
  414. package/dist/client/vditor/dist/js/mathjax/input/tex-base.js +1 -0
  415. package/dist/client/vditor/dist/js/mathjax/input/tex-full.js +1 -0
  416. package/dist/client/vditor/dist/js/mathjax/input/tex.js +1 -0
  417. package/dist/client/vditor/dist/js/mathjax/sre/mathmaps/de.js +104 -0
  418. package/dist/client/vditor/dist/js/mathjax/sre/mathmaps/en.js +110 -0
  419. package/dist/client/vditor/dist/js/mathjax/sre/mathmaps/es.js +104 -0
  420. package/dist/client/vditor/dist/js/mathjax/sre/mathmaps/fr.js +104 -0
  421. package/dist/client/vditor/dist/js/mathjax/sre/mathmaps/mathmaps_ie.js +518 -0
  422. package/dist/client/vditor/dist/js/mathjax/sre/mathmaps/nemeth.js +104 -0
  423. package/dist/client/vditor/dist/js/mathjax/sre/sre-node.js +11 -0
  424. package/dist/client/vditor/dist/js/mathjax/sre/sre_browser.js +1633 -0
  425. package/dist/client/vditor/dist/js/mathjax/tex-svg-full.js +1 -0
  426. package/dist/client/vditor/dist/js/mermaid/mermaid.min.js +1759 -0
  427. package/dist/client/vditor/dist/js/plantuml/plantuml-encoder.min.js +1 -0
  428. package/dist/client/vditor/dist/js/smiles-drawer/smiles-drawer.min.js +71 -0
  429. package/dist/client/vditor/dist/method.d.ts +51 -0
  430. package/dist/client/vditor/dist/method.js +2663 -0
  431. package/dist/client/vditor/dist/method.min.js +1 -0
  432. package/dist/client/vditor/dist/ts/constants.d.ts +45 -0
  433. package/dist/client/vditor/dist/ts/devtools/index.d.ts +7 -0
  434. package/dist/client/vditor/dist/ts/export/index.d.ts +4 -0
  435. package/dist/client/vditor/dist/ts/hint/index.d.ts +14 -0
  436. package/dist/client/vditor/dist/ts/ir/expandMarker.d.ts +1 -0
  437. package/dist/client/vditor/dist/ts/ir/highlightToolbarIR.d.ts +1 -0
  438. package/dist/client/vditor/dist/ts/ir/index.d.ts +13 -0
  439. package/dist/client/vditor/dist/ts/ir/input.d.ts +1 -0
  440. package/dist/client/vditor/dist/ts/ir/process.d.ts +8 -0
  441. package/dist/client/vditor/dist/ts/ir/processKeydown.d.ts +1 -0
  442. package/dist/client/vditor/dist/ts/markdown/SMILESRender.d.ts +1 -0
  443. package/dist/client/vditor/dist/ts/markdown/abcRender.d.ts +1 -0
  444. package/dist/client/vditor/dist/ts/markdown/adapterRender.d.ts +41 -0
  445. package/dist/client/vditor/dist/ts/markdown/anchorRender.d.ts +1 -0
  446. package/dist/client/vditor/dist/ts/markdown/chartRender.d.ts +1 -0
  447. package/dist/client/vditor/dist/ts/markdown/codeRender.d.ts +1 -0
  448. package/dist/client/vditor/dist/ts/markdown/flowchartRender.d.ts +1 -0
  449. package/dist/client/vditor/dist/ts/markdown/getHTML.d.ts +1 -0
  450. package/dist/client/vditor/dist/ts/markdown/getMarkdown.d.ts +1 -0
  451. package/dist/client/vditor/dist/ts/markdown/graphvizRender.d.ts +1 -0
  452. package/dist/client/vditor/dist/ts/markdown/highlightRender.d.ts +1 -0
  453. package/dist/client/vditor/dist/ts/markdown/lazyLoadImageRender.d.ts +6 -0
  454. package/dist/client/vditor/dist/ts/markdown/markmapRender.d.ts +1 -0
  455. package/dist/client/vditor/dist/ts/markdown/mathRender.d.ts +9 -0
  456. package/dist/client/vditor/dist/ts/markdown/mediaRender.d.ts +1 -0
  457. package/dist/client/vditor/dist/ts/markdown/mermaidRender.d.ts +1 -0
  458. package/dist/client/vditor/dist/ts/markdown/mindmapRender.d.ts +1 -0
  459. package/dist/client/vditor/dist/ts/markdown/outlineRender.d.ts +1 -0
  460. package/dist/client/vditor/dist/ts/markdown/plantumlRender.d.ts +1 -0
  461. package/dist/client/vditor/dist/ts/markdown/previewRender.d.ts +2 -0
  462. package/dist/client/vditor/dist/ts/markdown/setLute.d.ts +1 -0
  463. package/dist/client/vditor/dist/ts/markdown/speechRender.d.ts +6 -0
  464. package/dist/client/vditor/dist/ts/outline/index.d.ts +7 -0
  465. package/dist/client/vditor/dist/ts/preview/image.d.ts +1 -0
  466. package/dist/client/vditor/dist/ts/preview/index.d.ts +10 -0
  467. package/dist/client/vditor/dist/ts/resize/index.d.ts +6 -0
  468. package/dist/client/vditor/dist/ts/sv/combineFootnote.d.ts +6 -0
  469. package/dist/client/vditor/dist/ts/sv/index.d.ts +13 -0
  470. package/dist/client/vditor/dist/ts/sv/inputEvent.d.ts +1 -0
  471. package/dist/client/vditor/dist/ts/sv/process.d.ts +11 -0
  472. package/dist/client/vditor/dist/ts/sv/processKeydown.d.ts +1 -0
  473. package/dist/client/vditor/dist/ts/tip/index.d.ts +6 -0
  474. package/dist/client/vditor/dist/ts/toolbar/Both.d.ts +5 -0
  475. package/dist/client/vditor/dist/ts/toolbar/Br.d.ts +4 -0
  476. package/dist/client/vditor/dist/ts/toolbar/CodeTheme.d.ts +6 -0
  477. package/dist/client/vditor/dist/ts/toolbar/ContentTheme.d.ts +6 -0
  478. package/dist/client/vditor/dist/ts/toolbar/Counter.d.ts +6 -0
  479. package/dist/client/vditor/dist/ts/toolbar/Custom.d.ts +5 -0
  480. package/dist/client/vditor/dist/ts/toolbar/Devtools.d.ts +5 -0
  481. package/dist/client/vditor/dist/ts/toolbar/Divider.d.ts +4 -0
  482. package/dist/client/vditor/dist/ts/toolbar/EditMode.d.ts +8 -0
  483. package/dist/client/vditor/dist/ts/toolbar/Emoji.d.ts +7 -0
  484. package/dist/client/vditor/dist/ts/toolbar/Export.d.ts +6 -0
  485. package/dist/client/vditor/dist/ts/toolbar/Fullscreen.d.ts +6 -0
  486. package/dist/client/vditor/dist/ts/toolbar/Headings.d.ts +7 -0
  487. package/dist/client/vditor/dist/ts/toolbar/Help.d.ts +5 -0
  488. package/dist/client/vditor/dist/ts/toolbar/Indent.d.ts +5 -0
  489. package/dist/client/vditor/dist/ts/toolbar/Info.d.ts +5 -0
  490. package/dist/client/vditor/dist/ts/toolbar/InsertAfter.d.ts +5 -0
  491. package/dist/client/vditor/dist/ts/toolbar/InsertBefore.d.ts +5 -0
  492. package/dist/client/vditor/dist/ts/toolbar/MenuItem.d.ts +5 -0
  493. package/dist/client/vditor/dist/ts/toolbar/Outdent.d.ts +5 -0
  494. package/dist/client/vditor/dist/ts/toolbar/Outline.d.ts +5 -0
  495. package/dist/client/vditor/dist/ts/toolbar/Preview.d.ts +6 -0
  496. package/dist/client/vditor/dist/ts/toolbar/Record.d.ts +6 -0
  497. package/dist/client/vditor/dist/ts/toolbar/Redo.d.ts +5 -0
  498. package/dist/client/vditor/dist/ts/toolbar/Undo.d.ts +5 -0
  499. package/dist/client/vditor/dist/ts/toolbar/Upload.d.ts +6 -0
  500. package/dist/client/vditor/dist/ts/toolbar/index.d.ts +10 -0
  501. package/dist/client/vditor/dist/ts/toolbar/setToolbar.d.ts +20 -0
  502. package/dist/client/vditor/dist/ts/ui/initUI.d.ts +4 -0
  503. package/dist/client/vditor/dist/ts/ui/setCodeTheme.d.ts +1 -0
  504. package/dist/client/vditor/dist/ts/ui/setContentTheme.d.ts +1 -0
  505. package/dist/client/vditor/dist/ts/ui/setPreviewMode.d.ts +1 -0
  506. package/dist/client/vditor/dist/ts/ui/setTheme.d.ts +1 -0
  507. package/dist/client/vditor/dist/ts/undo/index.d.ts +19 -0
  508. package/dist/client/vditor/dist/ts/upload/getElement.d.ts +1 -0
  509. package/dist/client/vditor/dist/ts/upload/index.d.ts +8 -0
  510. package/dist/client/vditor/dist/ts/upload/setHeaders.d.ts +1 -0
  511. package/dist/client/vditor/dist/ts/util/Options.d.ts +8 -0
  512. package/dist/client/vditor/dist/ts/util/RecordMedia.d.ts +18 -0
  513. package/dist/client/vditor/dist/ts/util/addScript.d.ts +2 -0
  514. package/dist/client/vditor/dist/ts/util/addStyle.d.ts +1 -0
  515. package/dist/client/vditor/dist/ts/util/code160to32.d.ts +1 -0
  516. package/dist/client/vditor/dist/ts/util/compatibility.d.ts +7 -0
  517. package/dist/client/vditor/dist/ts/util/editorCommonEvent.d.ts +9 -0
  518. package/dist/client/vditor/dist/ts/util/fixBrowserBehavior.d.ts +39 -0
  519. package/dist/client/vditor/dist/ts/util/function.d.ts +3 -0
  520. package/dist/client/vditor/dist/ts/util/getSelectText.d.ts +1 -0
  521. package/dist/client/vditor/dist/ts/util/hasClosest.d.ts +9 -0
  522. package/dist/client/vditor/dist/ts/util/hasClosestByHeadings.d.ts +2 -0
  523. package/dist/client/vditor/dist/ts/util/highlightToolbar.d.ts +1 -0
  524. package/dist/client/vditor/dist/ts/util/hotKey.d.ts +1 -0
  525. package/dist/client/vditor/dist/ts/util/log.d.ts +1 -0
  526. package/dist/client/vditor/dist/ts/util/merge.d.ts +1 -0
  527. package/dist/client/vditor/dist/ts/util/processCode.d.ts +2 -0
  528. package/dist/client/vditor/dist/ts/util/selection.d.ts +14 -0
  529. package/dist/client/vditor/dist/ts/util/toc.d.ts +5 -0
  530. package/dist/client/vditor/dist/ts/wysiwyg/afterRenderEvent.d.ts +5 -0
  531. package/dist/client/vditor/dist/ts/wysiwyg/highlightToolbarWYSIWYG.d.ts +4 -0
  532. package/dist/client/vditor/dist/ts/wysiwyg/index.d.ts +22 -0
  533. package/dist/client/vditor/dist/ts/wysiwyg/inlineTag.d.ts +10 -0
  534. package/dist/client/vditor/dist/ts/wysiwyg/input.d.ts +1 -0
  535. package/dist/client/vditor/dist/ts/wysiwyg/processKeydown.d.ts +2 -0
  536. package/dist/client/vditor/dist/ts/wysiwyg/renderDomByMd.d.ts +5 -0
  537. package/dist/client/vditor/dist/ts/wysiwyg/setHeading.d.ts +2 -0
  538. package/dist/client/vditor/dist/ts/wysiwyg/showCode.d.ts +1 -0
  539. package/dist/client/vditor/dist/ts/wysiwyg/toolbarEvent.d.ts +1 -0
  540. package/dist/client/vditor/dist/types/index.d.ts +882 -0
  541. package/dist/externalVersion.js +8 -0
  542. package/dist/index.d.ts +2 -0
  543. package/dist/index.js +39 -0
  544. package/dist/locale/en-US.d.ts +34 -0
  545. package/dist/locale/en-US.js +55 -0
  546. package/dist/locale/ko_KR.d.ts +34 -0
  547. package/dist/locale/ko_KR.js +55 -0
  548. package/dist/locale/zh-CN.d.ts +34 -0
  549. package/dist/locale/zh-CN.js +55 -0
  550. package/dist/server/index.d.ts +1 -0
  551. package/dist/server/index.js +33 -0
  552. package/dist/server/markdown-vditor-field.d.ts +4 -0
  553. package/dist/server/markdown-vditor-field.js +32 -0
  554. package/dist/server/plugin.d.ts +11 -0
  555. package/dist/server/plugin.js +45 -0
  556. package/package.json +29 -0
  557. package/server.d.ts +2 -0
  558. package/server.js +1 -0
@@ -0,0 +1,1817 @@
1
+ /*!
2
+ * Vditor v3.10.8 - A markdown editor written in TypeScript.
3
+ *
4
+ * MIT License
5
+ *
6
+ * Copyright (c) 2018-present B3log 开源, b3log.org
7
+ *
8
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
9
+ * of this software and associated documentation files (the "Software"), to deal
10
+ * in the Software without restriction, including without limitation the rights
11
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
+ * copies of the Software, and to permit persons to whom the Software is
13
+ * furnished to do so, subject to the following conditions:
14
+ *
15
+ * The above copyright notice and this permission notice shall be included in all
16
+ * copies or substantial portions of the Software.
17
+ *
18
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
+ * SOFTWARE.
25
+ *
26
+ */
27
+ /*!
28
+ * Vditor v3.10.8 - A markdown editor written in TypeScript.
29
+ *
30
+ * MIT License
31
+ *
32
+ * Copyright (c) 2018-present B3log 开源, b3log.org
33
+ *
34
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
35
+ * of this software and associated documentation files (the "Software"), to deal
36
+ * in the Software without restriction, including without limitation the rights
37
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
38
+ * copies of the Software, and to permit persons to whom the Software is
39
+ * furnished to do so, subject to the following conditions:
40
+ *
41
+ * The above copyright notice and this permission notice shall be included in all
42
+ * copies or substantial portions of the Software.
43
+ *
44
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
45
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
46
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
47
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
48
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
49
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
50
+ * SOFTWARE.
51
+ *
52
+ */
53
+ .vditor {
54
+ --border-color: #d1d5da;
55
+ --second-color: rgba(88, 96, 105, 0.36);
56
+ --panel-background-color: #fff;
57
+ --panel-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
58
+ --toolbar-background-color: #f6f8fa;
59
+ --toolbar-icon-color: #586069;
60
+ --toolbar-icon-hover-color: #4285f4;
61
+ --toolbar-height: 35px;
62
+ --toolbar-divider-margin-top: 8px;
63
+ --textarea-background-color: #fafbfc;
64
+ --textarea-text-color: #24292e;
65
+ --resize-icon-color: var(--toolbar-icon-color);
66
+ --resize-background-color: var(--toolbar-background-color);
67
+ --resize-hover-icon-color: var(--panel-background-color);
68
+ --resize-hover-background-color: var(--toolbar-icon-hover-color);
69
+ --count-background-color: rgba(27, 31, 35, 0.05);
70
+ --heading-border-color: #eaecef;
71
+ --blockquote-color: #6a737d;
72
+ --ir-heading-color: #660e7a;
73
+ --ir-title-color: #808080;
74
+ --ir-bi-color: #0033b3;
75
+ --ir-link-color: #008000;
76
+ --ir-bracket-color: #0000ff;
77
+ --ir-paren-color: #008000;
78
+ }
79
+ .vditor--dark {
80
+ --border-color: #141414;
81
+ --second-color: rgba(185, 185, 185, 0.36);
82
+ --panel-background-color: #24292e;
83
+ --panel-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
84
+ --toolbar-background-color: #1d2125;
85
+ --toolbar-icon-color: #b9b9b9;
86
+ --toolbar-icon-hover-color: #fff;
87
+ --textarea-background-color: #2f363d;
88
+ --textarea-text-color: #d1d5da;
89
+ --resize-icon-color: var(--border-color);
90
+ --resize-background-color: var(--second-color);
91
+ --resize-hover-icon-color: var(--toolbar-icon-hover-color);
92
+ --resize-hover-background-color: rgba(185, 185, 185, 0.86);
93
+ --count-background-color: rgba(66, 133, 244, 0.36);
94
+ --heading-border-color: var(--textarea-text-color);
95
+ --blockquote-color: var(--toolbar-icon-color);
96
+ --ir-heading-color: #9876aa;
97
+ --ir-title-color: #808080;
98
+ --ir-bi-color: #cc7832;
99
+ --ir-link-color: #ffc66d;
100
+ --ir-bracket-color: #287bde;
101
+ --ir-paren-color: #6a8759;
102
+ }
103
+ /**
104
+ * tool tip.
105
+ *
106
+ * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
107
+ * @version 0.1.0.0, Jan 25, 2019
108
+ */
109
+ @keyframes tooltip-appear {
110
+ from {
111
+ opacity: 0;
112
+ }
113
+ to {
114
+ opacity: 1;
115
+ }
116
+ }
117
+ .vditor-tooltipped {
118
+ position: relative;
119
+ cursor: pointer;
120
+ }
121
+ .vditor-tooltipped::after {
122
+ position: absolute;
123
+ z-index: 1000000;
124
+ display: none;
125
+ padding: 5px 8px;
126
+ font-size: 11px;
127
+ font-weight: normal;
128
+ -webkit-font-smoothing: subpixel-antialiased;
129
+ color: #fff;
130
+ text-align: center;
131
+ text-decoration: none;
132
+ text-shadow: none;
133
+ text-transform: none;
134
+ letter-spacing: normal;
135
+ word-wrap: break-word;
136
+ white-space: pre;
137
+ pointer-events: none;
138
+ content: attr(aria-label);
139
+ background: #3b3e43;
140
+ border-radius: 3px;
141
+ line-height: 16px;
142
+ opacity: 0;
143
+ }
144
+ .vditor-tooltipped::before {
145
+ position: absolute;
146
+ z-index: 1000001;
147
+ display: none;
148
+ width: 0;
149
+ height: 0;
150
+ color: #3b3e43;
151
+ pointer-events: none;
152
+ content: "";
153
+ border: 5px solid transparent;
154
+ opacity: 0;
155
+ }
156
+ .vditor-tooltipped--hover::before,
157
+ .vditor-tooltipped--hover::after,
158
+ .vditor-tooltipped:hover::before,
159
+ .vditor-tooltipped:hover::after,
160
+ .vditor-tooltipped:active::before,
161
+ .vditor-tooltipped:active::after,
162
+ .vditor-tooltipped:focus::before,
163
+ .vditor-tooltipped:focus::after {
164
+ display: inline-block;
165
+ text-decoration: none;
166
+ animation-name: tooltip-appear;
167
+ animation-duration: 0.15s;
168
+ animation-fill-mode: forwards;
169
+ animation-timing-function: ease-in;
170
+ }
171
+ .vditor-tooltipped__s::after,
172
+ .vditor-tooltipped__se::after,
173
+ .vditor-tooltipped__sw::after {
174
+ top: 100%;
175
+ right: 50%;
176
+ margin-top: 5px;
177
+ }
178
+ .vditor-tooltipped__s::before,
179
+ .vditor-tooltipped__se::before,
180
+ .vditor-tooltipped__sw::before {
181
+ top: auto;
182
+ right: 50%;
183
+ bottom: -5px;
184
+ margin-right: -5px;
185
+ border-bottom-color: #3b3e43;
186
+ }
187
+ .vditor-tooltipped__se::after {
188
+ right: auto;
189
+ left: 50%;
190
+ margin-left: -15px;
191
+ }
192
+ .vditor-tooltipped__sw::after {
193
+ margin-right: -15px;
194
+ }
195
+ .vditor-tooltipped__n::after,
196
+ .vditor-tooltipped__ne::after,
197
+ .vditor-tooltipped__nw::after {
198
+ right: 50%;
199
+ bottom: 100%;
200
+ margin-bottom: 5px;
201
+ }
202
+ .vditor-tooltipped__n::before,
203
+ .vditor-tooltipped__ne::before,
204
+ .vditor-tooltipped__nw::before {
205
+ top: -5px;
206
+ right: 50%;
207
+ bottom: auto;
208
+ margin-right: -5px;
209
+ border-top-color: #3b3e43;
210
+ }
211
+ .vditor-tooltipped__ne::after {
212
+ right: auto;
213
+ left: 50%;
214
+ margin-left: -15px;
215
+ }
216
+ .vditor-tooltipped__nw::after {
217
+ margin-right: -15px;
218
+ }
219
+ .vditor-tooltipped__s::after,
220
+ .vditor-tooltipped__n::after {
221
+ transform: translateX(50%);
222
+ }
223
+ .vditor-tooltipped__w::after {
224
+ right: 100%;
225
+ bottom: 50%;
226
+ margin-right: 5px;
227
+ transform: translateY(50%);
228
+ }
229
+ .vditor-tooltipped__w::before {
230
+ top: 50%;
231
+ bottom: 50%;
232
+ left: -5px;
233
+ margin-top: -5px;
234
+ border-left-color: #3b3e43;
235
+ }
236
+ .vditor-tooltipped__e::after {
237
+ bottom: 50%;
238
+ left: 100%;
239
+ margin-left: 5px;
240
+ transform: translateY(50%);
241
+ }
242
+ .vditor-tooltipped__e::before {
243
+ top: 50%;
244
+ right: -5px;
245
+ bottom: 50%;
246
+ margin-top: -5px;
247
+ border-right-color: #3b3e43;
248
+ }
249
+ @media screen and (max-width: 520px) {
250
+ .vditor-tooltipped:before,
251
+ .vditor-tooltipped:after {
252
+ content: none;
253
+ }
254
+ }
255
+ /**
256
+ * panel.
257
+ *
258
+ * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
259
+ * @version 1.0.0.0, Jan 22, 2020
260
+ */
261
+ @keyframes scale-in {
262
+ 0% {
263
+ opacity: 0;
264
+ transform: scale(0.5);
265
+ }
266
+ 100% {
267
+ opacity: 1;
268
+ transform: scale(1);
269
+ }
270
+ }
271
+ .vditor-panel {
272
+ background-color: var(--panel-background-color);
273
+ position: absolute;
274
+ box-shadow: var(--panel-shadow);
275
+ border-radius: 3px;
276
+ padding: 5px;
277
+ z-index: 3;
278
+ font-size: 14px;
279
+ display: none;
280
+ -moz-user-select: none;
281
+ user-select: none;
282
+ max-width: 320px;
283
+ min-width: 80px;
284
+ animation-duration: 0.15s;
285
+ animation-name: scale-in;
286
+ animation-timing-function: cubic-bezier(0.2, 0, 0.13, 1.5);
287
+ color: var(--toolbar-icon-color);
288
+ }
289
+ .vditor-panel--none {
290
+ padding: 0;
291
+ animation: none;
292
+ min-width: auto;
293
+ max-width: none;
294
+ white-space: nowrap;
295
+ opacity: 0.86;
296
+ }
297
+ .vditor-panel--arrow:before {
298
+ position: absolute;
299
+ width: 0;
300
+ height: 0;
301
+ pointer-events: none;
302
+ content: " ";
303
+ border: 7px solid transparent;
304
+ top: -14px;
305
+ left: 5px;
306
+ border-bottom-color: var(--panel-background-color);
307
+ }
308
+ .vditor-panel--left {
309
+ right: 0;
310
+ }
311
+ .vditor-panel--left.vditor-panel--arrow:before {
312
+ right: 5px;
313
+ left: auto;
314
+ }
315
+ .vditor-input {
316
+ border: 0;
317
+ padding: 3px 5px;
318
+ background-color: var(--panel-background-color);
319
+ font-size: 12px;
320
+ color: var(--textarea-text-color);
321
+ }
322
+ .vditor-input:focus {
323
+ background-color: var(--toolbar-background-color);
324
+ outline: none;
325
+ }
326
+ .vditor-icon {
327
+ color: var(--toolbar-icon-color);
328
+ cursor: pointer;
329
+ float: left;
330
+ padding: 4px 5px;
331
+ height: 21px;
332
+ width: 23px;
333
+ background-color: transparent;
334
+ border: 0;
335
+ box-sizing: border-box;
336
+ }
337
+ .vditor-icon:hover,
338
+ .vditor-icon--current {
339
+ color: var(--toolbar-icon-hover-color);
340
+ background-color: transparent;
341
+ }
342
+ .vditor-icon:focus {
343
+ outline: none;
344
+ }
345
+ .vditor-icon svg {
346
+ height: 13px !important;
347
+ width: 13px !important;
348
+ float: left;
349
+ fill: currentColor;
350
+ pointer-events: none;
351
+ }
352
+ .vditor-toolbar {
353
+ background-color: var(--toolbar-background-color);
354
+ border-bottom: 1px solid var(--border-color);
355
+ padding: 0 5px;
356
+ line-height: 1;
357
+ }
358
+ .vditor-toolbar--pin {
359
+ position: sticky;
360
+ top: 0;
361
+ z-index: 1;
362
+ }
363
+ .vditor-toolbar--hide {
364
+ transition: all 0.15s ease-in-out;
365
+ height: 5px;
366
+ overflow: hidden;
367
+ }
368
+ .vditor-toolbar--hide:hover {
369
+ background-color: var(--toolbar-background-color);
370
+ height: auto;
371
+ overflow: visible;
372
+ }
373
+ .vditor-toolbar__item {
374
+ float: left;
375
+ position: relative;
376
+ }
377
+ .vditor-toolbar__item .vditor-tooltipped {
378
+ color: var(--toolbar-icon-color);
379
+ border: 0;
380
+ padding: 10px 5px;
381
+ background-color: transparent;
382
+ height: var(--toolbar-height);
383
+ width: 25px;
384
+ box-sizing: border-box;
385
+ font-size: 0;
386
+ }
387
+ .vditor-toolbar__item .vditor-tooltipped:focus {
388
+ outline: none;
389
+ }
390
+ .vditor-toolbar__item .vditor-tooltipped:focus {
391
+ cursor: pointer;
392
+ color: var(--toolbar-icon-hover-color);
393
+ }
394
+ .vditor-toolbar__item svg {
395
+ fill: currentColor;
396
+ display: inline-block;
397
+ stroke-width: 0;
398
+ stroke: currentColor;
399
+ width: 15px;
400
+ height: 15px;
401
+ }
402
+ .vditor-toolbar__item input {
403
+ position: absolute;
404
+ width: 25px;
405
+ height: var(--toolbar-height);
406
+ top: 0;
407
+ left: 0;
408
+ cursor: pointer;
409
+ opacity: 0.001;
410
+ overflow: hidden;
411
+ }
412
+ .vditor-toolbar__divider {
413
+ float: left;
414
+ height: calc(var(--toolbar-height) - (var(--toolbar-divider-margin-top) * 2));
415
+ border-left: 1px solid var(--second-color);
416
+ margin: var(--toolbar-divider-margin-top) 8px;
417
+ }
418
+ .vditor-toolbar__br {
419
+ width: 100%;
420
+ padding: 0 !important;
421
+ height: 0 !important;
422
+ }
423
+ .vditor-menu--current {
424
+ color: var(--toolbar-icon-hover-color) !important;
425
+ }
426
+ .vditor-menu--disabled {
427
+ color: var(--second-color) !important;
428
+ cursor: not-allowed !important;
429
+ }
430
+ .vditor-emojis {
431
+ display: inline-block;
432
+ overflow: auto;
433
+ }
434
+ .vditor-emojis::-webkit-scrollbar {
435
+ display: none;
436
+ }
437
+ .vditor-emojis__tip {
438
+ flex: 1;
439
+ min-width: 1px;
440
+ width: 200px;
441
+ margin-right: 10px;
442
+ color: var(--toolbar-icon-color);
443
+ white-space: nowrap;
444
+ text-overflow: ellipsis;
445
+ overflow: hidden;
446
+ }
447
+ .vditor-emojis__tail {
448
+ margin-top: 5px;
449
+ font-size: 12px;
450
+ color: var(--toolbar-icon-color);
451
+ display: flex;
452
+ }
453
+ .vditor-emojis__tail a {
454
+ text-decoration: none;
455
+ color: var(--toolbar-icon-color);
456
+ }
457
+ .vditor-emojis__tail a:hover {
458
+ color: var(--toolbar-icon-hover-color);
459
+ }
460
+ .vditor-emojis button {
461
+ cursor: pointer;
462
+ border-radius: 3px;
463
+ float: left;
464
+ height: 30px;
465
+ width: 30px;
466
+ text-align: center;
467
+ line-height: 26px;
468
+ padding: 3px;
469
+ box-sizing: border-box;
470
+ font-size: 16px;
471
+ transition: all 0.15s ease-in-out;
472
+ border: 0;
473
+ margin: 0;
474
+ background-color: transparent;
475
+ overflow: hidden;
476
+ }
477
+ .vditor-emojis button:focus {
478
+ outline: none;
479
+ }
480
+ .vditor-emojis button:hover .vditor-emojis__icon {
481
+ display: inline-block;
482
+ transform: scale(1.2);
483
+ }
484
+ .vditor-emojis img {
485
+ height: 20px;
486
+ width: 20px;
487
+ float: left;
488
+ margin: 3px 0 0 3px;
489
+ }
490
+ @media screen and (max-width: 520px) {
491
+ .vditor-toolbar__item {
492
+ padding: 0 12px;
493
+ }
494
+ .vditor-panel--left.vditor-panel--arrow:before {
495
+ right: 17px;
496
+ }
497
+ }
498
+ @media (hover: hover) and (pointer: fine) {
499
+ .vditor-toolbar__item .vditor-tooltipped:hover {
500
+ color: var(--toolbar-icon-hover-color);
501
+ }
502
+ }
503
+ @keyframes slideInDown {
504
+ from {
505
+ transform: translate3d(0, -100%, 0);
506
+ visibility: visible;
507
+ }
508
+ to {
509
+ transform: translate3d(0, 0, 0);
510
+ }
511
+ }
512
+ .vditor {
513
+ display: flex;
514
+ flex-direction: column;
515
+ border: 1px solid var(--border-color);
516
+ border-radius: 3px;
517
+ box-sizing: border-box;
518
+ font-family: "Helvetica Neue", "Luxi Sans", "DejaVu Sans", "Hiragino Sans GB", "Microsoft Yahei", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji", "EmojiSymbols";
519
+ }
520
+ .vditor--fullscreen {
521
+ position: fixed;
522
+ top: 0;
523
+ width: 100% !important;
524
+ left: 0;
525
+ height: 100vh !important;
526
+ z-index: 90;
527
+ border-radius: 0;
528
+ }
529
+ .vditor-content {
530
+ display: flex;
531
+ min-height: 60px;
532
+ flex: 1;
533
+ min-width: 1px;
534
+ position: relative;
535
+ }
536
+ .vditor-preview {
537
+ flex: 1;
538
+ min-width: 1px;
539
+ overflow: auto;
540
+ margin-left: -1px;
541
+ border-left: 1px solid var(--border-color);
542
+ box-sizing: border-box;
543
+ border-radius: 0 0 3px 0;
544
+ background-color: var(--textarea-background-color);
545
+ }
546
+ .vditor-preview::-webkit-scrollbar {
547
+ display: none;
548
+ }
549
+ .vditor-preview__action {
550
+ text-align: center;
551
+ padding: 10px;
552
+ background-color: var(--toolbar-background-color);
553
+ }
554
+ .vditor-preview__action button {
555
+ background-color: var(--toolbar-background-color);
556
+ color: var(--toolbar-icon-color);
557
+ line-height: 20px;
558
+ border: 0;
559
+ margin: 0 10px;
560
+ cursor: pointer;
561
+ padding: 0 7px;
562
+ font-size: 12px;
563
+ }
564
+ .vditor-preview__action button.vditor-preview__action--current,
565
+ .vditor-preview__action button:hover {
566
+ color: var(--toolbar-icon-hover-color);
567
+ background-color: var(--toolbar-background-color);
568
+ }
569
+ .vditor-preview__action button:focus {
570
+ outline: none;
571
+ }
572
+ .vditor-preview__action button svg {
573
+ fill: currentColor;
574
+ height: 15px;
575
+ width: 15px;
576
+ vertical-align: middle;
577
+ }
578
+ .vditor-preview > .vditor-reset {
579
+ padding: 10px;
580
+ margin: 0 auto;
581
+ }
582
+ .vditor-preview img:not(.emoji) {
583
+ cursor: pointer;
584
+ }
585
+ .vditor-devtools {
586
+ display: none;
587
+ background-color: var(--textarea-background-color);
588
+ overflow: auto;
589
+ flex: 1;
590
+ min-width: 1px;
591
+ box-shadow: inset 1px 0 var(--border-color);
592
+ box-sizing: border-box;
593
+ border-radius: 0 0 3px 0;
594
+ padding: 10px;
595
+ }
596
+ .vditor-counter {
597
+ padding: 3px;
598
+ color: var(--toolbar-icon-color);
599
+ background-color: var(--count-background-color);
600
+ border-radius: 3px;
601
+ font-size: 12px;
602
+ -moz-user-select: none;
603
+ user-select: none;
604
+ float: right;
605
+ margin: 8px 3px 0 0;
606
+ }
607
+ .vditor-counter--error {
608
+ color: #d23f31;
609
+ background-color: rgba(210, 63, 49, 0.1);
610
+ }
611
+ .vditor-resize {
612
+ padding: 3px 0;
613
+ cursor: row-resize;
614
+ -moz-user-select: none;
615
+ user-select: none;
616
+ position: absolute;
617
+ width: 100%;
618
+ }
619
+ .vditor-resize--top {
620
+ top: -3px;
621
+ }
622
+ .vditor-resize--bottom {
623
+ bottom: -3px;
624
+ }
625
+ .vditor-resize > div {
626
+ height: 3px;
627
+ background-color: var(--resize-background-color);
628
+ transition: all 0.15s ease-in-out;
629
+ }
630
+ .vditor-resize:hover > div,
631
+ .vditor-resize--selected > div {
632
+ background-color: var(--resize-hover-background-color);
633
+ }
634
+ .vditor-resize:hover svg,
635
+ .vditor-resize--selected svg {
636
+ color: var(--resize-hover-icon-color);
637
+ }
638
+ .vditor-resize svg {
639
+ fill: currentColor;
640
+ stroke-width: 0;
641
+ stroke: currentColor;
642
+ width: 13px;
643
+ height: 3px;
644
+ display: block;
645
+ margin: 0 auto;
646
+ color: var(--resize-icon-color);
647
+ }
648
+ .vditor-upload {
649
+ position: absolute;
650
+ height: 3px;
651
+ left: 0;
652
+ top: -2px;
653
+ transition: all 0.15s ease-in-out;
654
+ background-color: #4285f4;
655
+ }
656
+ .vditor-tip {
657
+ position: absolute;
658
+ font-size: 12px;
659
+ top: 10px;
660
+ animation-duration: 0.15s;
661
+ animation-fill-mode: both;
662
+ left: 50%;
663
+ z-index: 5;
664
+ }
665
+ .vditor-tip--show {
666
+ display: block;
667
+ animation-name: slideInDown;
668
+ }
669
+ .vditor-tip__content {
670
+ text-align: left;
671
+ display: inline-block;
672
+ line-height: 16px;
673
+ padding: 3px 10px;
674
+ border-radius: 3px;
675
+ background: var(--toolbar-background-color);
676
+ position: relative;
677
+ margin-left: -50%;
678
+ color: var(--toolbar-icon-color);
679
+ max-width: 100%;
680
+ box-shadow: var(--panel-shadow);
681
+ }
682
+ .vditor-tip__content ul {
683
+ margin: 2px 0;
684
+ padding: 0 0 0 18px;
685
+ }
686
+ .vditor-tip__content a {
687
+ color: #4285f4;
688
+ }
689
+ .vditor-tip__close {
690
+ position: absolute;
691
+ color: var(--toolbar-icon-color);
692
+ top: -7px;
693
+ right: -15px;
694
+ font-weight: bold;
695
+ cursor: pointer;
696
+ }
697
+ .vditor-tip__close:hover {
698
+ color: var(--toolbar-icon-hover-color);
699
+ }
700
+ .vditor-img {
701
+ position: fixed;
702
+ top: 0;
703
+ left: 0;
704
+ right: 0;
705
+ bottom: 0;
706
+ display: flex;
707
+ flex-direction: column;
708
+ z-index: 100;
709
+ }
710
+ .vditor-img__bar {
711
+ border-bottom: 1px solid var(--border-color);
712
+ background-color: var(--toolbar-background-color);
713
+ text-align: center;
714
+ height: 36px;
715
+ box-sizing: border-box;
716
+ display: flex;
717
+ align-items: center;
718
+ justify-content: center;
719
+ }
720
+ .vditor-img__btn {
721
+ display: flex;
722
+ align-items: center;
723
+ cursor: pointer;
724
+ margin-left: 24px;
725
+ -moz-user-select: none;
726
+ user-select: none;
727
+ color: var(--toolbar-icon-color);
728
+ }
729
+ .vditor-img__btn:hover {
730
+ color: var(--toolbar-icon-hover-color);
731
+ }
732
+ .vditor-img__btn svg {
733
+ height: 14px;
734
+ width: 14px;
735
+ margin-right: 8px;
736
+ fill: currentColor;
737
+ }
738
+ .vditor-img__img {
739
+ flex: 1;
740
+ background-color: var(--textarea-background-color);
741
+ overflow: auto;
742
+ cursor: zoom-out;
743
+ }
744
+ .vditor-img__img img {
745
+ max-width: none;
746
+ }
747
+ .vditor-hint {
748
+ background-color: var(--panel-background-color);
749
+ position: absolute;
750
+ box-shadow: var(--panel-shadow);
751
+ border-radius: 3px;
752
+ padding: 5px 0;
753
+ z-index: 4;
754
+ line-height: 20px;
755
+ list-style: none;
756
+ font-size: 12px;
757
+ margin: 0;
758
+ max-width: 250px;
759
+ min-width: 80px;
760
+ display: none;
761
+ }
762
+ .vditor-hint .vditor-hint {
763
+ margin-top: -31px;
764
+ left: 100%;
765
+ right: auto;
766
+ }
767
+ .vditor-hint .vditor-hint.vditor-panel--left {
768
+ right: 100%;
769
+ left: auto;
770
+ }
771
+ .vditor-hint button {
772
+ color: var(--toolbar-icon-color);
773
+ display: block;
774
+ padding: 3px 10px;
775
+ border: 0;
776
+ border-radius: 0;
777
+ line-height: 20px;
778
+ width: 100%;
779
+ box-sizing: border-box;
780
+ text-align: left;
781
+ margin: 0;
782
+ background-color: transparent;
783
+ cursor: pointer;
784
+ white-space: nowrap;
785
+ text-overflow: ellipsis;
786
+ overflow: hidden;
787
+ }
788
+ .vditor-hint button:focus {
789
+ outline: none;
790
+ }
791
+ .vditor-hint--current,
792
+ .vditor-hint button:not(.vditor-menu--disabled):hover {
793
+ background-color: var(--toolbar-background-color) !important;
794
+ color: var(--toolbar-icon-hover-color) !important;
795
+ }
796
+ .vditor-hint__emoji {
797
+ font-size: 16px;
798
+ float: left;
799
+ margin-right: 3px;
800
+ }
801
+ .vditor-hint img {
802
+ height: 20px;
803
+ width: 20px;
804
+ float: left;
805
+ margin-right: 3px;
806
+ }
807
+ .vditor-reset {
808
+ color: #24292e;
809
+ font-variant-ligatures: no-common-ligatures;
810
+ font-family: "Helvetica Neue", "Luxi Sans", "DejaVu Sans", "Hiragino Sans GB", "Microsoft Yahei", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji", "EmojiSymbols";
811
+ word-wrap: break-word;
812
+ overflow: auto;
813
+ line-height: 1.5;
814
+ font-size: 16px;
815
+ word-break: break-word;
816
+ }
817
+ .vditor-reset--anchor {
818
+ padding-left: 20px;
819
+ }
820
+ .vditor-reset--error {
821
+ color: #d23f31;
822
+ font-size: 12px;
823
+ display: block;
824
+ line-height: 16px;
825
+ }
826
+ .vditor-reset ul ul ul {
827
+ list-style-type: square;
828
+ }
829
+ .vditor-reset ul ul {
830
+ list-style-type: circle;
831
+ }
832
+ .vditor-reset ul {
833
+ list-style-type: disc;
834
+ }
835
+ .vditor-reset ul,
836
+ .vditor-reset ol {
837
+ padding-left: 2em;
838
+ margin-top: 0;
839
+ margin-bottom: 16px;
840
+ }
841
+ .vditor-reset li + li {
842
+ margin-top: 0.25em;
843
+ }
844
+ .vditor-reset li p {
845
+ margin-top: 16px;
846
+ }
847
+ .vditor-reset audio {
848
+ max-width: 100%;
849
+ }
850
+ .vditor-reset audio:focus {
851
+ outline: none;
852
+ }
853
+ .vditor-reset video {
854
+ max-height: 90vh;
855
+ max-width: 100%;
856
+ }
857
+ .vditor-reset img {
858
+ max-width: 100%;
859
+ }
860
+ .vditor-reset img.emoji {
861
+ cursor: auto;
862
+ max-width: 20px;
863
+ vertical-align: sub;
864
+ }
865
+ .vditor-reset h1,
866
+ .vditor-reset h2,
867
+ .vditor-reset h3,
868
+ .vditor-reset h4,
869
+ .vditor-reset h5,
870
+ .vditor-reset h6 {
871
+ margin-top: 24px;
872
+ margin-bottom: 16px;
873
+ font-weight: 600;
874
+ line-height: 1.25;
875
+ }
876
+ .vditor-reset h1:hover .vditor-anchor svg,
877
+ .vditor-reset h2:hover .vditor-anchor svg,
878
+ .vditor-reset h3:hover .vditor-anchor svg,
879
+ .vditor-reset h4:hover .vditor-anchor svg,
880
+ .vditor-reset h5:hover .vditor-anchor svg,
881
+ .vditor-reset h6:hover .vditor-anchor svg {
882
+ visibility: visible;
883
+ }
884
+ .vditor-reset h1 {
885
+ font-size: 1.75em;
886
+ }
887
+ .vditor-reset h2 {
888
+ font-size: 1.55em;
889
+ }
890
+ .vditor-reset h3 {
891
+ font-size: 1.38em;
892
+ }
893
+ .vditor-reset h4 {
894
+ font-size: 1.25em;
895
+ }
896
+ .vditor-reset h5 {
897
+ font-size: 1.13em;
898
+ }
899
+ .vditor-reset h6 {
900
+ font-size: 1em;
901
+ }
902
+ .vditor-reset hr {
903
+ height: 2px;
904
+ padding: 0;
905
+ margin: 24px 0;
906
+ background-color: #eaecef;
907
+ border: 0;
908
+ }
909
+ .vditor-reset p {
910
+ margin-top: 0;
911
+ margin-bottom: 16px;
912
+ }
913
+ .vditor-reset blockquote {
914
+ padding: 0 1em;
915
+ color: #6a737d;
916
+ border-left: 0.25em solid #eaecef;
917
+ margin: 0 0 16px 0;
918
+ }
919
+ .vditor-reset blockquote > :first-child {
920
+ margin-top: 0;
921
+ }
922
+ .vditor-reset blockquote > :last-child {
923
+ margin-bottom: 0;
924
+ }
925
+ .vditor-reset ins > iframe {
926
+ border: 0;
927
+ }
928
+ .vditor-reset iframe {
929
+ border: 1px solid #d1d5da;
930
+ max-width: 100%;
931
+ box-sizing: border-box;
932
+ }
933
+ .vditor-reset iframe.iframe__video {
934
+ min-width: 80%;
935
+ min-height: 36vh;
936
+ }
937
+ .vditor-reset table {
938
+ border-collapse: collapse;
939
+ empty-cells: show;
940
+ margin-bottom: 16px;
941
+ overflow: auto;
942
+ border-spacing: 0;
943
+ display: block;
944
+ word-break: keep-all;
945
+ width: 100%;
946
+ }
947
+ .vditor-reset table tr {
948
+ background-color: #fafbfc;
949
+ border-top: 1px solid #c6cbd1;
950
+ }
951
+ .vditor-reset table td,
952
+ .vditor-reset table th {
953
+ padding: 6px 13px;
954
+ border: 1px solid #dfe2e5;
955
+ word-break: normal;
956
+ white-space: nowrap;
957
+ }
958
+ .vditor-reset table td:first-child::after,
959
+ .vditor-reset table th:first-child::after {
960
+ content: "";
961
+ display: inline-block;
962
+ vertical-align: top;
963
+ min-height: 24px;
964
+ }
965
+ .vditor-reset table th {
966
+ font-weight: 600;
967
+ }
968
+ .vditor-reset table tbody tr:nth-child(2n) {
969
+ background-color: #fff;
970
+ }
971
+ .vditor-reset code:not(.hljs):not(.highlight-chroma) {
972
+ padding: 0.2em 0.4em;
973
+ margin: 0;
974
+ font-size: 85%;
975
+ border-radius: 3px;
976
+ font-family: mononoki, Consolas, "Liberation Mono", Menlo, Courier, monospace, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji", "EmojiSymbols";
977
+ word-break: break-word;
978
+ background-size: 20px 20px;
979
+ white-space: pre-wrap;
980
+ }
981
+ .vditor-reset pre {
982
+ margin: 1em 0;
983
+ }
984
+ .vditor-reset pre > code {
985
+ margin: 0;
986
+ font-size: 85%;
987
+ padding: 0.5em;
988
+ border-radius: 5px;
989
+ display: block;
990
+ overflow: auto;
991
+ white-space: pre;
992
+ font-family: mononoki, Consolas, "Liberation Mono", Menlo, Courier, monospace, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji", "EmojiSymbols";
993
+ background-size: 20px 20px;
994
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8AgMAAABHkjHhAAAACVBMVEWAgIBaWlo+Pj7rTFvWAAAAA3RSTlMHCAw+VhR4AAAA+klEQVQoz4WSMW7EQAhFPxKWNh2FCx+HkaZI6RRb5DYbyVfIJXLKDCFoMbaTKSw/8ZnPAPjaH2xgZcUNUDADD7D9LtDBCLZ45fbkvo/30K8yeI64pPwl6znd/3n/Oe93P3ho9qeh72btTFzqkz0rsJle8Zr81OLEwZ1dv/713uWqvu2pl+k0fy7MWtj9r/tN5q/02z89qa/L4Dc2LvM93kezPfXlME/O86EbY/V9GB9ePX8G1/6W+/9h1dq/HGfTfzT3j/xNo7522Bfnqe5jO/fvhVthlfk434v3iO9zG/UOphyPeinPl1J8Gtaa7xPTa/Dk+RIs4deMvwGvcGsmsCvJ0AAAAABJRU5ErkJggg==);
995
+ word-break: initial;
996
+ word-wrap: normal;
997
+ }
998
+ .vditor-reset pre:hover div.vditor-copy {
999
+ display: block;
1000
+ }
1001
+ .vditor-reset .language-math,
1002
+ .vditor-reset .language-echarts,
1003
+ .vditor-reset .language-mindmap,
1004
+ .vditor-reset .language-plantuml,
1005
+ .vditor-reset .language-mermaid,
1006
+ .vditor-reset .language-smiles,
1007
+ .vditor-reset .language-markmap,
1008
+ .vditor-reset .language-abc,
1009
+ .vditor-reset .language-flowchart,
1010
+ .vditor-reset .language-graphviz {
1011
+ margin-bottom: 16px;
1012
+ }
1013
+ .vditor-reset .language-math mjx-container:focus {
1014
+ outline: none;
1015
+ cursor: context-menu;
1016
+ }
1017
+ .vditor-reset .language-math .katex-display > .katex > .katex-html > .tag {
1018
+ display: inline-block;
1019
+ font-size: 1.21rem;
1020
+ right: 2px;
1021
+ }
1022
+ .vditor-reset .language-echarts,
1023
+ .vditor-reset .language-mindmap {
1024
+ overflow: hidden;
1025
+ height: 420px;
1026
+ }
1027
+ .vditor-reset .language-mermaid,
1028
+ .vditor-reset .language-markmap,
1029
+ .vditor-reset .language-flowchart,
1030
+ .vditor-reset .language-graphviz {
1031
+ text-align: center;
1032
+ }
1033
+ .vditor-reset .language-graphviz parsererror {
1034
+ overflow: auto;
1035
+ }
1036
+ .vditor-reset kbd {
1037
+ display: inline-block;
1038
+ padding: 3px 5px;
1039
+ font: 11px Consolas, "Liberation Mono", Menlo, Courier, monospace;
1040
+ line-height: 10px;
1041
+ color: #24292e;
1042
+ vertical-align: middle;
1043
+ background-color: #fafbfc;
1044
+ border: solid 1px #d1d5da;
1045
+ border-radius: 3px;
1046
+ box-shadow: inset 0 -1px 0 #d1d5da;
1047
+ }
1048
+ .vditor-reset summary {
1049
+ cursor: pointer;
1050
+ }
1051
+ .vditor-reset summary:focus {
1052
+ outline: none;
1053
+ }
1054
+ .vditor-reset svg {
1055
+ height: auto;
1056
+ width: auto;
1057
+ stroke-width: initial;
1058
+ }
1059
+ .vditor-reset p:last-child,
1060
+ .vditor-reset blockquote:last-child,
1061
+ .vditor-reset pre:last-child,
1062
+ .vditor-reset ul:last-child,
1063
+ .vditor-reset ol:last-child,
1064
+ .vditor-reset hr:last-child {
1065
+ margin-bottom: 0;
1066
+ }
1067
+ .vditor-comment {
1068
+ border-bottom: 2px solid #f8e6ab;
1069
+ }
1070
+ .vditor-comment--focus,
1071
+ .vditor-comment--hover {
1072
+ background-color: #faf1d1;
1073
+ border-bottom: 2px solid #ffc60a;
1074
+ }
1075
+ .vditor-comment--focus .vditor-comment,
1076
+ .vditor-comment--hover .vditor-comment {
1077
+ border-bottom: 2px solid #ffc60a;
1078
+ }
1079
+ .vditor-task {
1080
+ list-style: none !important;
1081
+ word-break: break-all;
1082
+ }
1083
+ .vditor-task input {
1084
+ margin: 0 0.2em 0.25em -1.6em;
1085
+ font-size: 12px;
1086
+ vertical-align: middle;
1087
+ }
1088
+ .vditor-copy {
1089
+ position: relative;
1090
+ display: none;
1091
+ z-index: 1;
1092
+ }
1093
+ .vditor-copy textarea {
1094
+ position: absolute;
1095
+ left: -100000px;
1096
+ height: 10px;
1097
+ }
1098
+ .vditor-copy span {
1099
+ cursor: pointer;
1100
+ position: absolute;
1101
+ right: 15px;
1102
+ top: 0.5em;
1103
+ }
1104
+ .vditor-copy svg {
1105
+ color: #586069;
1106
+ height: 14px;
1107
+ width: 14px !important;
1108
+ display: block;
1109
+ fill: currentColor;
1110
+ }
1111
+ .vditor-linenumber {
1112
+ padding-left: 4em !important;
1113
+ position: relative;
1114
+ }
1115
+ .vditor-linenumber__rows {
1116
+ position: absolute;
1117
+ pointer-events: none;
1118
+ top: 0.5em;
1119
+ left: 0;
1120
+ width: 3em;
1121
+ /* works for line-numbers below 1000 lines */
1122
+ -moz-user-select: none;
1123
+ user-select: none;
1124
+ counter-reset: linenumber;
1125
+ }
1126
+ .vditor-linenumber__rows > span {
1127
+ pointer-events: none;
1128
+ display: block;
1129
+ }
1130
+ .vditor-linenumber__rows > span::before {
1131
+ counter-increment: linenumber;
1132
+ content: counter(linenumber);
1133
+ color: rgba(158, 150, 150, 0.38);
1134
+ display: block;
1135
+ padding-right: 1em;
1136
+ text-align: right;
1137
+ }
1138
+ .vditor-speech {
1139
+ position: absolute;
1140
+ display: none;
1141
+ background-color: #f6f8fa;
1142
+ border: 1px solid #d1d5da;
1143
+ border-radius: 3px;
1144
+ padding: 3px;
1145
+ cursor: pointer;
1146
+ color: #586069;
1147
+ }
1148
+ .vditor-speech:hover,
1149
+ .vditor-speech--current {
1150
+ color: #4285f4;
1151
+ }
1152
+ .vditor-speech svg {
1153
+ height: 14px;
1154
+ width: 14px;
1155
+ fill: currentColor;
1156
+ display: block;
1157
+ stroke-width: 0;
1158
+ stroke: currentColor;
1159
+ }
1160
+ .vditor-anchor {
1161
+ margin-left: 5px;
1162
+ }
1163
+ .vditor-anchor--left {
1164
+ float: left;
1165
+ padding-right: 4px;
1166
+ margin-left: -20px;
1167
+ }
1168
+ .vditor-anchor svg {
1169
+ visibility: hidden;
1170
+ }
1171
+ .vditor-anchor:hover svg {
1172
+ visibility: visible;
1173
+ }
1174
+ .vditor-anchor:focus {
1175
+ outline: none;
1176
+ }
1177
+ .vditor-linkcard {
1178
+ margin: 31px auto 16px;
1179
+ transition: all 0.15s ease-in-out;
1180
+ cursor: pointer;
1181
+ max-width: 768px;
1182
+ padding: 0 10px;
1183
+ }
1184
+ .vditor-linkcard a {
1185
+ border-radius: 3px;
1186
+ background-color: #f6f8fa;
1187
+ overflow: hidden;
1188
+ max-height: 250px;
1189
+ display: flex;
1190
+ text-decoration: none;
1191
+ flex-wrap: wrap-reverse;
1192
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
1193
+ }
1194
+ .vditor-linkcard a:hover {
1195
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.13), 0 3px 6px rgba(0, 0, 0, 0.26);
1196
+ text-decoration: none;
1197
+ }
1198
+ .vditor-linkcard a:visited .vditor-linkcard__abstract {
1199
+ color: rgba(88, 96, 105, 0.36);
1200
+ }
1201
+ .vditor-linkcard__info {
1202
+ padding: 10px;
1203
+ min-width: 200px;
1204
+ box-sizing: border-box;
1205
+ flex: 1;
1206
+ }
1207
+ .vditor-linkcard__title {
1208
+ font-size: 14px;
1209
+ font-weight: 400;
1210
+ color: #24292e;
1211
+ display: flex;
1212
+ align-items: center;
1213
+ }
1214
+ .vditor-linkcard__title img {
1215
+ cursor: pointer;
1216
+ height: 20px;
1217
+ width: 20px;
1218
+ border-radius: 3px;
1219
+ flex-shrink: 0;
1220
+ margin-right: 5px;
1221
+ }
1222
+ .vditor-linkcard__abstract {
1223
+ word-wrap: break-word;
1224
+ word-break: break-all;
1225
+ -webkit-line-clamp: 2;
1226
+ overflow: hidden;
1227
+ text-overflow: ellipsis;
1228
+ -webkit-box-orient: vertical;
1229
+ display: -webkit-box;
1230
+ font-size: 13px;
1231
+ color: #586069;
1232
+ margin: 5px 0;
1233
+ }
1234
+ .vditor-linkcard__site {
1235
+ font-size: 12px;
1236
+ color: #4285f4;
1237
+ }
1238
+ .vditor-linkcard__image {
1239
+ background-size: cover;
1240
+ background-repeat: no-repeat;
1241
+ background-position: center center;
1242
+ max-width: 250px;
1243
+ min-width: 126px;
1244
+ cursor: pointer;
1245
+ background-color: rgba(88, 96, 105, 0.36);
1246
+ }
1247
+ .vditor-footnotes__goto-ref {
1248
+ text-decoration: none;
1249
+ }
1250
+ .vditor-toc {
1251
+ margin-bottom: 16px;
1252
+ -moz-user-select: text;
1253
+ user-select: text;
1254
+ color: #4285f4;
1255
+ }
1256
+ .vditor-toc .vditor-outline__action {
1257
+ display: none;
1258
+ }
1259
+ .vditor-toc ul {
1260
+ list-style: none !important;
1261
+ padding-left: 1em;
1262
+ }
1263
+ .vditor-toc > ul {
1264
+ padding-left: 0;
1265
+ }
1266
+ .vditor-toc span {
1267
+ cursor: pointer;
1268
+ }
1269
+ .vditor-toc li > span > svg {
1270
+ width: 0;
1271
+ height: 0;
1272
+ }
1273
+ .vditor-outline {
1274
+ width: 250px;
1275
+ border-right: 1px solid var(--border-color);
1276
+ background-color: var(--panel-background-color);
1277
+ display: none;
1278
+ overflow: auto;
1279
+ }
1280
+ .vditor-outline--right {
1281
+ border-right: 0;
1282
+ border-left: 1px solid var(--border-color);
1283
+ }
1284
+ .vditor-outline::-webkit-scrollbar {
1285
+ display: none;
1286
+ }
1287
+ .vditor-outline ul {
1288
+ list-style: none !important;
1289
+ padding-left: 1em;
1290
+ margin: 0;
1291
+ }
1292
+ .vditor-outline__content > ul {
1293
+ padding-left: 0;
1294
+ }
1295
+ .vditor-outline li > span {
1296
+ display: flex;
1297
+ align-items: center;
1298
+ padding: 5px 10px;
1299
+ cursor: pointer;
1300
+ color: var(--textarea-text-color);
1301
+ }
1302
+ .vditor-outline li > span > svg {
1303
+ height: 10px;
1304
+ width: 10px;
1305
+ flex-shrink: 0;
1306
+ }
1307
+ .vditor-outline li > span:hover {
1308
+ color: var(--toolbar-icon-hover-color);
1309
+ }
1310
+ .vditor-outline li > span > span {
1311
+ white-space: nowrap;
1312
+ overflow: hidden;
1313
+ text-overflow: ellipsis;
1314
+ }
1315
+ .vditor-outline__title {
1316
+ border-bottom: 1px dashed var(--border-color);
1317
+ padding: 5px 10px;
1318
+ color: var(--toolbar-icon-color);
1319
+ font-size: 12px;
1320
+ }
1321
+ .vditor-outline__action {
1322
+ transition: all 0.15s ease-in-out;
1323
+ fill: currentColor;
1324
+ margin-right: 5px;
1325
+ flex-shrink: 0;
1326
+ }
1327
+ .vditor-outline__action--close {
1328
+ transform: rotate(-90deg);
1329
+ }
1330
+ .vditor-wysiwyg {
1331
+ box-sizing: border-box;
1332
+ flex: 1;
1333
+ position: relative;
1334
+ width: 100%;
1335
+ min-width: 1px;
1336
+ }
1337
+ .vditor-wysiwyg pre.vditor-reset {
1338
+ background-color: var(--panel-background-color);
1339
+ margin: 0;
1340
+ white-space: pre-wrap;
1341
+ height: 100%;
1342
+ box-sizing: border-box;
1343
+ }
1344
+ .vditor-wysiwyg pre.vditor-reset[contenteditable="false"] {
1345
+ opacity: 0.3;
1346
+ cursor: not-allowed;
1347
+ }
1348
+ .vditor-wysiwyg pre.vditor-reset:empty::before {
1349
+ content: attr(placeholder);
1350
+ color: var(--second-color);
1351
+ }
1352
+ .vditor-wysiwyg pre.vditor-reset:focus {
1353
+ outline: none;
1354
+ background-color: var(--textarea-background-color);
1355
+ }
1356
+ .vditor-wysiwyg pre.vditor-reset:after {
1357
+ content: "";
1358
+ height: var(--editor-bottom);
1359
+ display: block;
1360
+ }
1361
+ .vditor-wysiwyg blockquote:empty::before,
1362
+ .vditor-wysiwyg pre > code:empty::before,
1363
+ .vditor-wysiwyg p:empty::before,
1364
+ .vditor-wysiwyg h1:empty::after,
1365
+ .vditor-wysiwyg h2:empty::after,
1366
+ .vditor-wysiwyg h3:empty::after,
1367
+ .vditor-wysiwyg h4:empty::after,
1368
+ .vditor-wysiwyg h5:empty::after,
1369
+ .vditor-wysiwyg h6:empty::after {
1370
+ content: ' ';
1371
+ }
1372
+ .vditor-wysiwyg code[data-marker="`"] {
1373
+ padding-left: 0 !important;
1374
+ padding-right: 0 !important;
1375
+ }
1376
+ .vditor-wysiwyg__block pre:first-child {
1377
+ margin-bottom: -1em;
1378
+ }
1379
+ .vditor-wysiwyg__block pre:first-child code {
1380
+ color: var(--textarea-text-color);
1381
+ height: auto;
1382
+ text-align: left;
1383
+ }
1384
+ .vditor-wysiwyg__block pre:last-child {
1385
+ margin-bottom: 1em;
1386
+ }
1387
+ .vditor-wysiwyg__preview {
1388
+ cursor: pointer;
1389
+ white-space: initial;
1390
+ min-height: 27px;
1391
+ }
1392
+ .vditor-wysiwyg > .vditor-reset > h1:before,
1393
+ .vditor-wysiwyg > .vditor-reset > h2:before,
1394
+ .vditor-wysiwyg > .vditor-reset > h3:before,
1395
+ .vditor-wysiwyg > .vditor-reset > h4:before,
1396
+ .vditor-wysiwyg > .vditor-reset > h5:before,
1397
+ .vditor-wysiwyg > .vditor-reset > h6:before,
1398
+ .vditor-wysiwyg div.vditor-wysiwyg__block:before,
1399
+ .vditor-wysiwyg div[data-type="link-ref-defs-block"]:before,
1400
+ .vditor-wysiwyg div[data-type="footnotes-block"]:before,
1401
+ .vditor-wysiwyg .vditor-toc:before {
1402
+ float: left;
1403
+ padding-right: 4px;
1404
+ margin-left: -29px;
1405
+ content: 'H1';
1406
+ font-size: 0.85rem;
1407
+ font-weight: normal;
1408
+ color: var(--second-color);
1409
+ }
1410
+ .vditor-wysiwyg > .vditor-reset > h2:before {
1411
+ content: 'H2';
1412
+ }
1413
+ .vditor-wysiwyg > .vditor-reset > h3:before {
1414
+ content: 'H3';
1415
+ }
1416
+ .vditor-wysiwyg > .vditor-reset > h4:before {
1417
+ content: 'H4';
1418
+ }
1419
+ .vditor-wysiwyg > .vditor-reset > h5:before {
1420
+ content: 'H5';
1421
+ }
1422
+ .vditor-wysiwyg > .vditor-reset > h6:before {
1423
+ content: 'H6';
1424
+ }
1425
+ .vditor-wysiwyg div[data-type="link-ref-defs-block"]:before {
1426
+ content: '"A"';
1427
+ }
1428
+ .vditor-wysiwyg div[data-type="footnotes-block"]:before {
1429
+ content: '^F';
1430
+ }
1431
+ .vditor-wysiwyg div.vditor-wysiwyg__block:before {
1432
+ content: "</>";
1433
+ }
1434
+ .vditor-wysiwyg div.vditor-wysiwyg__block[data-type="yaml-front-matter"]:before {
1435
+ content: "F";
1436
+ }
1437
+ .vditor-wysiwyg div.vditor-wysiwyg__block[data-type="math-block"]:before {
1438
+ content: "$$";
1439
+ }
1440
+ .vditor-wysiwyg .vditor-toc:before {
1441
+ content: "ToC";
1442
+ }
1443
+ .vditor-wysiwyg hr {
1444
+ display: inline-block;
1445
+ margin: 12px 0;
1446
+ width: 100%;
1447
+ }
1448
+ .vditor-wysiwyg details {
1449
+ white-space: initial;
1450
+ }
1451
+ .vditor-wysiwyg a {
1452
+ cursor: pointer;
1453
+ }
1454
+ .vditor-wysiwyg span[data-type="backslash"] > span {
1455
+ display: none;
1456
+ color: var(--second-color);
1457
+ }
1458
+ .vditor-wysiwyg span[data-type="link-ref"],
1459
+ .vditor-wysiwyg sup[data-type="footnotes-ref"] {
1460
+ color: #4285f4;
1461
+ }
1462
+ .vditor-wysiwyg span[data-type="toc-h"] {
1463
+ color: #4285f4;
1464
+ text-decoration: underline;
1465
+ }
1466
+ .vditor-wysiwyg div[data-type="footnotes-block"] {
1467
+ border-top: 2px solid var(--heading-border-color);
1468
+ padding-top: 24px;
1469
+ margin-top: 24px;
1470
+ }
1471
+ .vditor-wysiwyg div[data-type="link-ref-defs-block"] {
1472
+ color: var(--blockquote-color);
1473
+ }
1474
+ @media screen and (max-width: 520px) {
1475
+ .vditor-wysiwyg h1:before,
1476
+ .vditor-wysiwyg h2:before,
1477
+ .vditor-wysiwyg h3:before,
1478
+ .vditor-wysiwyg h4:before,
1479
+ .vditor-wysiwyg h5:before,
1480
+ .vditor-wysiwyg h6:before,
1481
+ .vditor-wysiwyg div.vditor-wysiwyg__block:before,
1482
+ .vditor-wysiwyg div[data-type="link-ref-defs-block"]:before,
1483
+ .vditor-wysiwyg div[data-type="footnotes-block"]:before,
1484
+ .vditor-wysiwyg .vditor-toc:before {
1485
+ content: none;
1486
+ }
1487
+ }
1488
+ .vditor-ir {
1489
+ box-sizing: border-box;
1490
+ flex: 1;
1491
+ min-width: 1px;
1492
+ position: relative;
1493
+ width: 100%;
1494
+ }
1495
+ .vditor-ir__node[data-type="code-block"]:before,
1496
+ .vditor-ir__node[data-type="code-block"]:after,
1497
+ .vditor-ir__node[data-type="yaml-front-matter"]:before,
1498
+ .vditor-ir__node[data-type="yaml-front-matter"]:after,
1499
+ .vditor-ir__node[data-type="math-block"]:before,
1500
+ .vditor-ir__node[data-type="math-block"]:after {
1501
+ content: ' ';
1502
+ color: var(--second-color);
1503
+ }
1504
+ .vditor-ir__node:not(.vditor-ir__node--expand) .vditor-ir__marker {
1505
+ padding: 0 !important;
1506
+ }
1507
+ .vditor-ir__node:not(.vditor-ir__node--expand)[data-type="a"] {
1508
+ cursor: pointer;
1509
+ }
1510
+ .vditor-ir__node[data-type="link-ref"],
1511
+ .vditor-ir__node[data-type="footnotes-ref"] {
1512
+ color: #4285f4;
1513
+ }
1514
+ .vditor-ir__node[data-type="html-block"] {
1515
+ margin-bottom: 1em;
1516
+ }
1517
+ .vditor-ir__node .vditor-ir__marker {
1518
+ width: 0;
1519
+ overflow: hidden;
1520
+ display: inline-block;
1521
+ height: 0;
1522
+ transition: all 0.15s ease-in-out;
1523
+ }
1524
+ .vditor-ir__node--hidden .vditor-ir__marker {
1525
+ visibility: hidden;
1526
+ }
1527
+ .vditor-ir__node--expand .vditor-ir__marker {
1528
+ color: var(--second-color);
1529
+ display: inline;
1530
+ height: auto;
1531
+ width: auto;
1532
+ }
1533
+ .vditor-ir__node--expand .vditor-ir__marker--hide {
1534
+ display: none;
1535
+ }
1536
+ .vditor-ir__node--expand .vditor-ir__marker--heading {
1537
+ color: var(--ir-heading-color);
1538
+ }
1539
+ .vditor-ir__node--expand .vditor-ir__marker--bi {
1540
+ color: var(--ir-bi-color);
1541
+ }
1542
+ .vditor-ir__node--expand .vditor-ir__marker--link {
1543
+ color: var(--ir-link-color);
1544
+ }
1545
+ .vditor-ir__node--expand .vditor-ir__marker--title {
1546
+ color: var(--ir-title-color);
1547
+ }
1548
+ .vditor-ir__node--expand .vditor-ir__marker--bracket {
1549
+ color: var(--ir-bracket-color);
1550
+ text-decoration: underline;
1551
+ }
1552
+ .vditor-ir__node--expand .vditor-ir__marker--paren {
1553
+ color: var(--ir-paren-color);
1554
+ }
1555
+ .vditor-ir__node--expand .vditor-ir__marker--info {
1556
+ color: var(--ir-heading-color);
1557
+ }
1558
+ .vditor-ir__node--expand .vditor-ir__marker--pre code {
1559
+ color: var(--textarea-text-color);
1560
+ height: auto;
1561
+ text-align: left;
1562
+ }
1563
+ .vditor-ir__node--expand[data-type="code-block"]:before,
1564
+ .vditor-ir__node--expand[data-type="code-block"]:after {
1565
+ content: '```';
1566
+ }
1567
+ .vditor-ir__node--expand[data-type="yaml-front-matter"]:before,
1568
+ .vditor-ir__node--expand[data-type="yaml-front-matter"]:after {
1569
+ content: '---';
1570
+ }
1571
+ .vditor-ir__node--expand[data-type="math-block"]:before,
1572
+ .vditor-ir__node--expand[data-type="math-block"]:after {
1573
+ content: '$$';
1574
+ }
1575
+ .vditor-ir__node span[data-type="code-block-open-marker"],
1576
+ .vditor-ir__node span[data-type="code-block-close-marker"],
1577
+ .vditor-ir__node span[data-type="yaml-front-matter-open-marker"],
1578
+ .vditor-ir__node span[data-type="yaml-front-matter-close-marker"],
1579
+ .vditor-ir__node span[data-type="math-block-open-marker"],
1580
+ .vditor-ir__node span[data-type="math-block-close-marker"] {
1581
+ display: none;
1582
+ }
1583
+ .vditor-ir__preview {
1584
+ cursor: pointer;
1585
+ white-space: initial;
1586
+ min-height: 27px;
1587
+ }
1588
+ .vditor-ir__link {
1589
+ color: var(--ir-bracket-color);
1590
+ text-decoration: underline;
1591
+ }
1592
+ .vditor-ir pre.vditor-reset {
1593
+ background-color: var(--panel-background-color);
1594
+ margin: 0;
1595
+ white-space: pre-wrap;
1596
+ height: 100%;
1597
+ box-sizing: border-box;
1598
+ }
1599
+ .vditor-ir pre.vditor-reset[contenteditable="false"] {
1600
+ opacity: 0.3;
1601
+ cursor: not-allowed;
1602
+ }
1603
+ .vditor-ir pre.vditor-reset:empty::before {
1604
+ content: attr(placeholder);
1605
+ color: var(--second-color);
1606
+ }
1607
+ .vditor-ir pre.vditor-reset:focus {
1608
+ outline: none;
1609
+ background-color: var(--textarea-background-color);
1610
+ }
1611
+ .vditor-ir pre.vditor-reset:after {
1612
+ content: "";
1613
+ height: var(--editor-bottom);
1614
+ display: block;
1615
+ }
1616
+ .vditor-ir pre.vditor-reset pre {
1617
+ margin: 0;
1618
+ }
1619
+ .vditor-ir hr {
1620
+ display: inline-block;
1621
+ margin: 12px 0;
1622
+ width: 100%;
1623
+ }
1624
+ .vditor-ir blockquote:empty::before,
1625
+ .vditor-ir pre > code:empty::before,
1626
+ .vditor-ir p:empty::before,
1627
+ .vditor-ir h1:empty::after,
1628
+ .vditor-ir h2:empty::after,
1629
+ .vditor-ir h3:empty::after,
1630
+ .vditor-ir h4:empty::after,
1631
+ .vditor-ir h5:empty::after,
1632
+ .vditor-ir h6:empty::after {
1633
+ content: ' ';
1634
+ }
1635
+ .vditor-ir .vditor-reset > h1:before,
1636
+ .vditor-ir .vditor-reset > h2:before,
1637
+ .vditor-ir .vditor-reset > h3:before,
1638
+ .vditor-ir .vditor-reset > h4:before,
1639
+ .vditor-ir .vditor-reset > h5:before,
1640
+ .vditor-ir .vditor-reset > h6:before,
1641
+ .vditor-ir div[data-type="link-ref-defs-block"]:before,
1642
+ .vditor-ir div[data-type="footnotes-block"]:before,
1643
+ .vditor-ir .vditor-toc:before {
1644
+ float: left;
1645
+ padding-right: 4px;
1646
+ margin-left: -29px;
1647
+ content: 'H1';
1648
+ font-size: 0.85rem;
1649
+ font-weight: normal;
1650
+ color: var(--second-color);
1651
+ }
1652
+ .vditor-ir .vditor-reset > h2:before {
1653
+ content: 'H2';
1654
+ }
1655
+ .vditor-ir .vditor-reset > h3:before {
1656
+ content: 'H3';
1657
+ }
1658
+ .vditor-ir .vditor-reset > h4:before {
1659
+ content: 'H4';
1660
+ }
1661
+ .vditor-ir .vditor-reset > h5:before {
1662
+ content: 'H5';
1663
+ }
1664
+ .vditor-ir .vditor-reset > h6:before {
1665
+ content: 'H6';
1666
+ }
1667
+ .vditor-ir div[data-type="link-ref-defs-block"] {
1668
+ color: var(--blockquote-color);
1669
+ }
1670
+ .vditor-ir div[data-type="link-ref-defs-block"]:before {
1671
+ content: '"A"';
1672
+ }
1673
+ .vditor-ir div[data-type="footnotes-block"] {
1674
+ border-top: 2px solid var(--heading-border-color);
1675
+ padding-top: 24px;
1676
+ margin-top: 24px;
1677
+ }
1678
+ .vditor-ir div[data-type="footnotes-block"]:before {
1679
+ content: '^F';
1680
+ }
1681
+ .vditor-ir div[data-type="footnotes-block"] > div[data-type="footnotes-def"] > ul,
1682
+ .vditor-ir div[data-type="footnotes-block"] > div[data-type="footnotes-def"] > ol,
1683
+ .vditor-ir div[data-type="footnotes-block"] > div[data-type="footnotes-def"] > p,
1684
+ .vditor-ir div[data-type="footnotes-block"] > div[data-type="footnotes-def"] > blockquote,
1685
+ .vditor-ir div[data-type="footnotes-block"] > div[data-type="footnotes-def"] > pre,
1686
+ .vditor-ir div[data-type="footnotes-block"] > div[data-type="footnotes-def"] > table,
1687
+ .vditor-ir div[data-type="footnotes-block"] > div[data-type="footnotes-def"] > hr {
1688
+ margin-left: 8px;
1689
+ }
1690
+ .vditor-ir .vditor-toc:before {
1691
+ content: "ToC";
1692
+ }
1693
+ .vditor-ir .vditor-toc span[data-type="toc-h"] {
1694
+ color: #4285f4;
1695
+ text-decoration: underline;
1696
+ }
1697
+ @media screen and (max-width: 520px) {
1698
+ .vditor-ir h1:before,
1699
+ .vditor-ir h2:before,
1700
+ .vditor-ir h3:before,
1701
+ .vditor-ir h4:before,
1702
+ .vditor-ir h5:before,
1703
+ .vditor-ir h6:before,
1704
+ .vditor-ir div[data-type="link-ref-defs-block"]:before,
1705
+ .vditor-ir div[data-type="footnotes-block"]:before,
1706
+ .vditor-ir .vditor-toc:before {
1707
+ content: none;
1708
+ }
1709
+ }
1710
+ .vditor-sv {
1711
+ font-family: "Helvetica Neue", "Luxi Sans", "DejaVu Sans", "Hiragino Sans GB", "Microsoft Yahei", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji", "EmojiSymbols";
1712
+ margin: 0 1px 0 0;
1713
+ overflow: auto;
1714
+ width: 100%;
1715
+ flex: 1;
1716
+ min-width: 1px;
1717
+ border: 0;
1718
+ resize: none;
1719
+ padding: 10px 9px 10px 10px;
1720
+ box-sizing: border-box;
1721
+ background-color: var(--panel-background-color);
1722
+ outline: 0 none;
1723
+ font-size: 16px;
1724
+ line-height: 22px;
1725
+ color: var(--textarea-text-color);
1726
+ border-radius: 0 0 3px 3px;
1727
+ font-variant-ligatures: no-common-ligatures;
1728
+ white-space: pre-wrap;
1729
+ word-break: break-word;
1730
+ word-wrap: break-word;
1731
+ }
1732
+ .vditor-sv[contenteditable="false"] {
1733
+ opacity: 0.3;
1734
+ cursor: not-allowed;
1735
+ }
1736
+ .vditor-sv:empty::before {
1737
+ content: attr(placeholder);
1738
+ color: var(--second-color);
1739
+ }
1740
+ .vditor-sv:focus {
1741
+ background-color: var(--textarea-background-color);
1742
+ }
1743
+ .vditor-sv:after {
1744
+ content: "";
1745
+ height: var(--editor-bottom);
1746
+ display: block;
1747
+ }
1748
+ .vditor-sv span[data-type="newline"] + span[data-type="text"]:empty {
1749
+ display: inherit;
1750
+ }
1751
+ .vditor-sv .sup {
1752
+ vertical-align: super;
1753
+ font-size: smaller;
1754
+ }
1755
+ .vditor-sv .strong {
1756
+ font-weight: bold;
1757
+ }
1758
+ .vditor-sv .em {
1759
+ font-style: italic;
1760
+ }
1761
+ .vditor-sv .s {
1762
+ text-decoration: line-through;
1763
+ }
1764
+ .vditor-sv .mark:not(.vditor-sv__marker) {
1765
+ background-color: yellow;
1766
+ color: black;
1767
+ }
1768
+ .vditor-sv .h1 {
1769
+ font-size: 1.75em;
1770
+ line-height: 44px;
1771
+ }
1772
+ .vditor-sv .h2 {
1773
+ font-size: 1.55em;
1774
+ line-height: 38px;
1775
+ }
1776
+ .vditor-sv .h3 {
1777
+ font-size: 1.38em;
1778
+ line-height: 27px;
1779
+ }
1780
+ .vditor-sv .h4 {
1781
+ font-size: 1.25em;
1782
+ line-height: 25px;
1783
+ }
1784
+ .vditor-sv .h5 {
1785
+ font-size: 1.13em;
1786
+ }
1787
+ .vditor-sv .h6 {
1788
+ font-size: 1em;
1789
+ }
1790
+ .vditor-sv__marker {
1791
+ color: var(--second-color);
1792
+ }
1793
+ .vditor-sv__marker--heading {
1794
+ color: var(--ir-heading-color);
1795
+ }
1796
+ .vditor-sv__marker--bi {
1797
+ color: var(--ir-bi-color);
1798
+ }
1799
+ .vditor-sv__marker--link {
1800
+ color: var(--ir-link-color);
1801
+ }
1802
+ .vditor-sv__marker--title {
1803
+ color: var(--ir-title-color);
1804
+ }
1805
+ .vditor-sv__marker--bracket {
1806
+ color: var(--ir-bracket-color);
1807
+ }
1808
+ .vditor-sv__marker--paren {
1809
+ color: var(--ir-paren-color);
1810
+ }
1811
+ .vditor-sv__marker--info {
1812
+ color: var(--ir-heading-color);
1813
+ }
1814
+ .vditor-sv__marker--strong {
1815
+ font-weight: bold;
1816
+ }
1817
+