UNPKG

@blocknote/core

Version:

A "Notion-style" block-based extensible text editor built on top of Prosemirror and Tiptap.

8 lines (6 loc) 260 B
export const parseImageElement = (imageElement: HTMLImageElement) => { const url = imageElement.src || undefined; const previewWidth = imageElement.width || undefined; const name = imageElement.alt || undefined; return { url, previewWidth, name }; };