|
@@ -25,6 +25,34 @@ const syntax = {
|
|
|
offset: 0
|
|
|
},
|
|
|
},
|
|
|
+ img:{
|
|
|
+ paired: true,
|
|
|
+ recursive: false,
|
|
|
+ startRegexp: /!\[(.*)\]\(/,
|
|
|
+ endRegexp: /\)/,
|
|
|
+ content: {
|
|
|
+ start: {
|
|
|
+ point: 'end',
|
|
|
+ offset: 0
|
|
|
+ },
|
|
|
+ end: {
|
|
|
+ point: 'start',
|
|
|
+ offset: -1
|
|
|
+ }
|
|
|
+ },
|
|
|
+ begin: 0,
|
|
|
+ forward: {
|
|
|
+ point: 'end', //start, startEnd, end, endEnd
|
|
|
+ offset: 1
|
|
|
+ },
|
|
|
+ title: {
|
|
|
+ //index: 1,
|
|
|
+ recursive: false,
|
|
|
+ },
|
|
|
+ onbuild(md, mdTags, buildAST){ //this = {tag: }
|
|
|
+
|
|
|
+ }
|
|
|
+ },
|
|
|
a:{
|
|
|
paired: true,
|
|
|
recursive: false,
|
|
@@ -606,6 +634,11 @@ const A = ({react:React, children, title}) =>{
|
|
|
return _("a", {children: title, href: children})
|
|
|
}
|
|
|
|
|
|
+const Img = ({react:React, children, title}) =>{
|
|
|
+ const _ = React.createElement.bind(React)
|
|
|
+ return _("a", {alt: title, src: children})
|
|
|
+}
|
|
|
+
|
|
|
const defaultMapMDToComponents = {
|
|
|
heading1: Heading,
|
|
|
heading2: Heading,
|
|
@@ -618,6 +651,7 @@ const defaultMapMDToComponents = {
|
|
|
bold2: "strong",
|
|
|
p: "p",
|
|
|
a: A,
|
|
|
+ img: Img,
|
|
|
italic1: "i",
|
|
|
italic2: "i",
|
|
|
unOrderedList: 'ul',
|
|
@@ -645,15 +679,3 @@ function toReact(ast, React, mapMDToComponents=defaultMapMDToComponents){
|
|
|
}
|
|
|
|
|
|
export {buildAST, toReact}
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-//const md =
|
|
|
-//`
|
|
|
-//# heading1
|
|
|
-//какой-то _текст_
|
|
|
-//# heading2
|
|
|
-//а тут **шо** цикавого?)))
|
|
|
-//`;
|
|
|
-//console.log( buildAST(md).children)
|
|
|
-
|