cmark

My personal build of CMark ✏️

Commit
38686fc2122ad5d3716ac9740fc6e4383179d2a7
Parent
4bc4bf4695634dba18bb2eaa8c9c63a64d04558d
Author
John MacFarlane <jgm@berkeley.edu>
Date

Spec: Fixed example in section 5.2.1.

Closes #8.

Thanks, @balpha, for catching these problems.

Diffstat

1 file changed, 5 insertions, 3 deletions

Status File Name N° Changes Insertions Deletions
Modified spec.txt 8 5 3
diff --git a/spec.txt b/spec.txt
@@ -3090,9 +3090,11 @@ as the four-space rule demands, rather than a single list,
 
 ``` html
 <ul>
-<li><p>foo<p>
-<p>bar</p></li>
-<li><p>baz</p><li>
+<li><p>foo</p>
+<p>bar</p>
+<ul>
+<li>baz</li>
+</ul></li>
 </ul>
 ```