|
@@ -4,6 +4,27 @@
|
|
|
|
|
|
|
|
|
const syntax = {
|
|
|
+ p:{
|
|
|
+ paired: true,
|
|
|
+ recursive: false,
|
|
|
+ startRegexp: /\n\n\s*\S/,
|
|
|
+ endRegexp: /\n/,
|
|
|
+ content: {
|
|
|
+ start: {
|
|
|
+ point: 'start',
|
|
|
+ offset: 2
|
|
|
+ },
|
|
|
+ end: {
|
|
|
+ point: 'start',
|
|
|
+ offset: 0
|
|
|
+ }
|
|
|
+ },
|
|
|
+ begin: 0,
|
|
|
+ forward: {
|
|
|
+ point: 'end', //start, startEnd, end, endEnd
|
|
|
+ offset: 0
|
|
|
+ },
|
|
|
+ },
|
|
|
a:{
|
|
|
paired: true,
|
|
|
recursive: false,
|
|
@@ -595,6 +616,7 @@ const defaultMapMDToComponents = {
|
|
|
strike: "strike",
|
|
|
bold1: "strong",
|
|
|
bold2: "strong",
|
|
|
+ p: "p",
|
|
|
a: A,
|
|
|
italic1: "i",
|
|
|
italic2: "i",
|
|
@@ -609,6 +631,7 @@ const defaultMapMDToComponents = {
|
|
|
}
|
|
|
|
|
|
function toReact(ast, React, mapMDToComponents=defaultMapMDToComponents){
|
|
|
+ mapMDToComponents = {...defaultMapMDToComponents, ...mapMDToComponents}
|
|
|
const gC = (tag, c) => (c = mapMDToComponents[tag]) ? c : (c === "" ? React.Fragment : "span")
|
|
|
const RenderComponent = gC(ast.tag)
|
|
|
const _ = React.createElement.bind(React)
|
|
@@ -621,12 +644,6 @@ function toReact(ast, React, mapMDToComponents=defaultMapMDToComponents){
|
|
|
react: React})
|
|
|
}
|
|
|
|
|
|
-//window.module && (module.exports = {
|
|
|
- //buildAST,
|
|
|
- //toReact
|
|
|
-//})
|
|
|
-
|
|
|
-//console.log(Object.keys(syntax))
|
|
|
export {buildAST, toReact}
|
|
|
|
|
|
|