more advanced md script
authorDaniel Liu <mr.picklepinosaur@gmail.com>
Thu, 29 Jul 2021 02:46:42 +0000 (22:46 -0400)
committerDaniel Liu <mr.picklepinosaur@gmail.com>
Thu, 29 Jul 2021 02:46:42 +0000 (22:46 -0400)
modules/md
modules/md-test

index 1a4ae98..3ce8979 100755 (executable)
@@ -6,16 +6,53 @@
 ##      md [md_filepath]
 
 # remove document meta
 ##      md [md_filepath]
 
 # remove document meta
-/^-- \w+: .+$/d
-
-# html style comments
-/<!--(.*)-->/d
+## matches block of -- at top of file
+1,/^([^-]|-[^-]|^$)/ {
+    /^([^-]|-[^-]|^$)/ !{
+        /^-- ?/d
+    }
+}
 
 # special html characters
 s/\&/\&amp\;/g
 s/</\&lt\;/g
 s/>/\&gt\;/g
 
 
 # special html characters
 s/\&/\&amp\;/g
 s/</\&lt\;/g
 s/>/\&gt\;/g
 
+# code blocks
+/^ *```/ {
+    x
+    # check if hold space contains READING
+    # this is to see if this is the first ``` we read or no
+    /^ *READING/ !{
+        # if it is the first one, add READING to hold space
+        s/.*/READING/
+        x
+        # write opening tag
+        s/.*/<code>/
+        b
+    }
+    # if its the second ```, we are done
+    # first clear hold
+    s/.*//
+    x
+    # then write closing tag
+    s/.*/<\\code>/
+}
+
+# if we aren't reading ```, but hold space has READING in it
+# that means we are currently processing a block, just ignore and
+# keep going
+x
+/^ *READING/ {
+    x
+    b
+}
+x
+
+
+# html style comments
+/<!--(.*)-->/d
+
 # horizontal rule
 s/^\s*-{3,}\s*$/<hr\/>/
 
 # horizontal rule
 s/^\s*-{3,}\s*$/<hr\/>/
 
@@ -44,8 +81,6 @@ s/^#{3} (.*)/<h3>\1<\/h3>/
 s/^#{2} (.*)/<h2>\1<\/h2>/
 s/^#} (.*)/<h1>\1<\/h1>/
 
 s/^#{2} (.*)/<h2>\1<\/h2>/
 s/^#} (.*)/<h1>\1<\/h1>/
 
-# code block
-
 # paragraphs
 
 # /./{H;$!d} ; x ; s/^/\n<p>/ ; s/$/\n<\/p>/
 # paragraphs
 
 # /./{H;$!d} ; x ; s/^/\n<p>/ ; s/$/\n<\/p>/
index 72e244f..8f52d8f 100644 (file)
@@ -47,3 +47,18 @@ ___bold italic text___
 ---
 ----
     ---------     
 ---
 ----
     ---------     
+
+```
+this is
+a code
+block
+write
+code here
+```
+
+```
+another
+code
+block
+```
+