Procházet zdrojové kódy

fuck the local files

Ivan Asmer před 4 roky
rodič
revize
3221e26eb0
2 změnil soubory, kde provedl 26 přidání a 8 odebrání
  1. 3 2
      index.html
  2. 23 6
      index.mjs

+ 3 - 2
index.html

@@ -3,7 +3,7 @@
     <head>
         <script crossorigin src="https://unpkg.com/react@16/umd/react.development.js"></script>
         <script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
-        <script src='index.js'></script>
+        <script type='module' src='index.mjs'> </script>
     </head>
     <body>
         <textarea id='md' style='height: 700px; width: 100%;'>
@@ -11,7 +11,8 @@
         <button id='update'>update</button>
         <div id='reactMD'>
         </div>
-        <script>
+        <script type='module'>
+            import {buildAST, toReact} from './index.mjs'
             md.value = localStorage.md || '# markdown here\n'
             update.onclick = () => {
                 localStorage.md = md.value

+ 23 - 6
index.mjs

@@ -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}