diff options
| author | John MacFarlane <[email protected]> | 2025-07-30 12:32:01 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2025-07-30 12:49:18 -0700 |
| commit | 3e5babbb43666f666bae467f3fd07d6ce06e2133 (patch) | |
| tree | db9127abab6b39b2c9bd249da9947c70061d7c07 /test | |
| parent | 6dae03f719b4b809a38ff7cc361be3b46447b87d (diff) | |
Fix mistaken attempt to fix #11006.
Update the test so it reflects the right output, and fix the
solution.
Really closes #11006.
Diffstat (limited to 'test')
| -rw-r--r-- | test/command/11006.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/command/11006.md b/test/command/11006.md index 852256747..585d3556c 100644 --- a/test/command/11006.md +++ b/test/command/11006.md @@ -20,10 +20,21 @@ <ol><li>Nested item</li></ol> </li> </ol> + +<p>With non-default attributes:</p> + +<ol> + <li> + <p>Paragraph one</p> + <p>Paragraph two to force a list continuation</p> + <ol start=5><li>Nested item</li></ol> + </li> +</ol> ^D * Paragraph one + Paragraph two to force a list continuation + ** First nested ** Second nested @@ -32,5 +43,14 @@ How about ordered lists? . Paragraph one + Paragraph two to force a list continuation + +.. Nested item + +With non-default attributes: + +. Paragraph one ++ +Paragraph two to force a list continuation +[start=5] .. Nested item ``` |
