diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-01-16 21:51:12 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-01-16 21:51:39 -0800 |
commit | 15865e2f6b912e81536142bb408b5d698e4d898f (patch) | |
tree | 44eb1acc4eac5031159c4b3aab3719f5a60e4995 | |
parent | cc6bb4bd3cf241835cd31066bc06d005684459ac (diff) |
Added spec example: loose list with blank line after fenced code.
See #285. cmark currently fails this.
-rw-r--r-- | spec.txt | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -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: . |