fix(editor): failback when pasting bad hiccup

pull/5617/head
Andelf 2022-06-07 00:40:32 +08:00
parent 993f8114cf
commit 7df63ec51d
1 changed files with 3 additions and 7 deletions

View File

@ -2986,13 +2986,9 @@
edit-block (state/get-edit-block)
format (or (:block/format edit-block) :markdown)
initial-text (.getData clipboard-data "text")
text (if-not (string/blank? html)
(try
(html-parser/convert format html)
(catch :default e
(log/error :html->hiccup e)
initial-text))
initial-text)
text (or (when (string/blank? html)
(html-parser/convert format html))
initial-text)
input (state/get-input)]
(if-not (string/blank? text)
(if (or (thingatpt/markdown-src-at-point input)