cmark

My personal build of CMark ✏️

Commit
a452b609212ec4d08832badfbdf6c3ff6fd6a7c6
Parent
5af77f3c1d7f34f252a897094936ac4d162adf4b
Author
John MacFarlane <jgm@berkeley.edu>
Date

Documented another strange hoedown behavior.

Diffstat

1 file changed, 19 insertions, 1 deletion

Status File Name N° Changes Insertions Deletions
Modified why-cmark-and-not-x.md 20 19 1
diff --git a/why-cmark-and-not-x.md b/why-cmark-and-not-x.md
@@ -18,7 +18,8 @@ DOS attacks," but there are some chinks in the armor:
     ...
     0m17.84s
 
-`hoedown` has many parsing bugs.  Here is a selection:
+`hoedown` has many parsing bugs.  Here is a selection (as of
+v3.0.3):
 
     % hoedown
     - one
@@ -69,6 +70,23 @@ DOS attacks," but there are some chinks in the armor:
     <p><a href="url" title="ti\*tle">foo</a></p>
 
 
+    % ./hoedown
+    - one
+     - two
+      - three
+       - four
+    ^D
+    <ul>
+    <li>one
+
+    <ul>
+    <li>two</li>
+    <li>three</li>
+    <li>four</li>
+    </ul></li>
+    </ul>
+
+
 `discount`
 ----------