(content: unknown)
| 31 | * Ported from packages/ui/src/ui-component/input/RichInput.jsx (PR #6021). |
| 32 | */ |
| 33 | export function isHtmlContent(content: unknown): boolean { |
| 34 | if (!content || typeof content !== 'string') return false |
| 35 | return /^\s*<(?:p|div|span|h[1-6]|ul|ol|li|br|code|pre|blockquote|table|strong|em)\b/i.test(content) |
| 36 | } |
| 37 | |
| 38 | // ── Markdown serialisation ───────────────────────────────────────────────────── |
| 39 |
no test coverage detected