diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-06-23 09:43:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-23 09:43:17 -0700 |
commit | 87d4162012453667c9394bfdaf3c59c91559adac (patch) | |
tree | 6c099d97b7dbe29afce2b821ccf5a9facfb9d680 | |
parent | c15358fdd7947a4bc06c0897b9eb28d40d5df7da (diff) | |
parent | aa73e7b3b7a434b91daeab67ac9a368ad5b45f06 (diff) |
Merge pull request #408 from xoofx/nested_list
Add test case for nested lists with an indent > 4
-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> ```````````````````````````````` |