cmark

My personal build of CMark ✏️

Commit
ea51b30b3576171e7e2cdb3c26481fac155b3f51
Parent
35997dc0b6e7f3f076f5f8811787d3b64266b626
Author
John MacFarlane <jgm@berkeley.edu>
Date

spec: added another example of unclarity in Markdown syntax description.

Diffstat

1 file changed, 12 insertions, 4 deletions

Status File Name N° Changes Insertions Deletions
Modified spec.txt 16 12 4
diff --git a/spec.txt b/spec.txt
@@ -128,14 +128,22 @@ questions it does not answer:
       - and it can screw things up`
     ```
 
-11. Can list items include headers?  (`Markdown.pl` does not allow this,
-    but headers can occur in blockquotes.)
+11. Can list items include section headers?  (`Markdown.pl` does not
+    allow this, but does allow blockquotes to include headers.)
 
     ``` markdown
     - # Heading
     ```
 
-12. Can link references be defined inside block quotes or list items?
+12. Can list items be empty?
+
+    ``` markdown
+    * a
+    *
+    * b
+    ```
+
+13. Can link references be defined inside block quotes or list items?
 
     ``` markdown
     > Blockquote [foo].
@@ -143,7 +151,7 @@ questions it does not answer:
     > [foo]: /url
     ```
 
-13. If there are multiple definitions for the same reference, which takes
+14. If there are multiple definitions for the same reference, which takes
     precedence?
 
     ``` markdown