- Commit
- 15865e2f6b912e81536142bb408b5d698e4d898f
- Parent
- cc6bb4bd3cf241835cd31066bc06d005684459ac
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Added spec example: loose list with blank line after fenced code.
See #285. cmark currently fails this.
My personal build of CMark ✏️
Added spec example: loose list with blank line after fenced code.
See #285. cmark currently fails this.
1 file changed, 19 insertions, 0 deletions
Status | File Name | N° Changes | Insertions | Deletions |
Modified | spec.txt | 19 | 19 | 0 |
diff --git a/spec.txt b/spec.txt @@ -3957,6 +3957,25 @@ A single-paragraph list is tight: </ul> . +This list is loose, because of the blank line between the +two block elements in the list item: + +. +1. ``` + foo + ``` + + bar +. +<ol> +<li> +<pre><code>foo +</code></pre> +<p>bar</p> +</li> +</ol> +. + Here the outer list is loose, the inner list tight: .