tiptap: add list judge

This commit is contained in:
fantasticit 2022-06-21 21:33:28 +08:00
parent 6abd21545c
commit 2e991f0a79
1 changed files with 6 additions and 0 deletions

View File

@ -3,6 +3,12 @@ export const isMarkdown = (text: string): boolean => {
const html = text.match(/<\/?[a-z][\s\S]*>/i);
if (html && html.length) return true;
// 无序列表
if (/^[*|+|-]/.test(text)) return true;
// 有序列表
if (/^[0-9]+\)/.test(text)) return true;
// image
const image = text.match(/!\[(\s|.)?\]\((\s|.)?\)/);
if (image && image.length) return true;