UNPKG
@mkljczk/lexical-remark
Version:
latest (0.4.0)
0.4.0
0.3.9
This package contains Markdown helpers and functionality for Lexical using remark-parse.
@mkljczk/lexical-remark
/
lib
/
export
/
handlers
/
image.js
9 lines
(8 loc)
•
174 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export
const
image
= (
node
) => {
const
remarkNode = {
alt
: node.
getAltText
(),
type
:
'image'
,
url
: node.
getSrc
(), };
return
remarkNode; };