+# 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
+