UNPKG

@mkljczk/lexical-remark

Version:

This package contains Markdown helpers and functionality for Lexical using remark-parse.

9 lines (8 loc) 174 B
export const image = (node) => { const remarkNode = { alt: node.getAltText(), type: 'image', url: node.getSrc(), }; return remarkNode; };