diff options
author | Alexandre Mutel <alexandre_mutel@live.com> | 2016-06-22 21:47:17 +0900 |
---|---|---|
committer | Alexandre Mutel <alexandre_mutel@live.com> | 2016-06-22 21:47:17 +0900 |
commit | aa73e7b3b7a434b91daeab67ac9a368ad5b45f06 (patch) | |
tree | 6c099d97b7dbe29afce2b821ccf5a9facfb9d680 /spec.txt | |
parent | c15358fdd7947a4bc06c0897b9eb28d40d5df7da (diff) |
Add test case for nested lists with an indent > 4
Diffstat (limited to 'spec.txt')
-rw-r--r-- | spec.txt | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -4439,13 +4439,18 @@ So, in this case we need two spaces indent: - foo - bar - baz + - boo . <ul> <li>foo <ul> <li>bar <ul> -<li>baz</li> +<li>baz +<ul> +<li>boo</li> +</ul> +</li> </ul> </li> </ul> @@ -4460,11 +4465,13 @@ One is not enough: - foo - bar - baz + - boo . <ul> <li>foo</li> <li>bar</li> <li>baz</li> +<li>boo</li> </ul> ```````````````````````````````` |