|
@@ -634,9 +634,9 @@ const A = ({react:React, children, title}) =>{
|
|
|
return _("a", {children: title, href: children})
|
|
|
}
|
|
|
|
|
|
-const Img = ({react:React, children, title}) =>{
|
|
|
+const Img = ({react:React, children, title, node}) =>{
|
|
|
const _ = React.createElement.bind(React)
|
|
|
- return _("img", {alt: title, src: children})
|
|
|
+ return _("img", {alt: title, src: children, className: node.startMatch[1]})
|
|
|
}
|
|
|
|
|
|
const defaultMapMDToComponents = {
|