Skip to content

Commit bca81fd

Browse files
committed
List test are aready passing as expected
1 parent 1ec2ac5 commit bca81fd

File tree

6 files changed

+56
-31
lines changed

6 files changed

+56
-31
lines changed
Lines changed: 22 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
1-
<ul class="simple">
2-
<li><p>List item 1</p></li>
3-
<li><p>This is list item two</p></li>
4-
<li><p>And finally, list item three.</p></li>
5-
</ul>
6-
<ul class="simple">
7-
<li><p>Another list</p>
8-
<ul>
9-
<li><p>that is indented</p></li>
10-
<li><p>indented list item</p></li>
11-
</ul>
12-
</li>
13-
</ul>
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<title>Document Title</title>
5+
</head>
6+
<body>
7+
<div class="section" id="document-title">
8+
<h1>Document Title</h1>
9+
<ul>
10+
<li>List item 1</li>
11+
<li>This is list item two</li>
12+
<li>And finally, list item three.</li>
13+
<li><p>Another list</p>
14+
<ul>
15+
<li>that is indented</li>
16+
<li>indented list item</li>
17+
</ul>
18+
</li>
19+
</ul>
20+
</div>
21+
</body>
22+
</html>
Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1+
==============
2+
Document Title
3+
==============
14

25
* List item 1
36
* This is list item two
47
* And finally, list item three.
58

69
* Another list
7-
* that is indented
8-
* indented list item
10+
11+
* that is indented
12+
* indented list item

tests/Integration/tests/lists/input/skip

Whitespace-only changes.
Lines changed: 23 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,24 @@
1-
<ol class="simple">
2-
<li><p>First numbered list item.</p></li>
3-
<li><p>This is the second numbered list item.</p></li>
4-
<li><p>and then the third numbered list item.</p></li>
5-
</ol>
6-
7-
<ol class="simple">
8-
<li><p>First numbered list item.</p></li>
9-
<li><p>This is the second numbered list item.</p></li>
10-
<li><p>and then the third numbered list item.</p></li>
11-
<ol class="simple">
12-
<li><p>This is an indented numbered list.</p></li>
13-
<li><p>This is the second item.</p></li>
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<title>Document Title</title>
5+
</head>
6+
<body>
7+
<div class="section" id="document-title">
8+
<h1>Document Title</h1>
9+
<ol>
10+
<li>First numbered list item.</li>
11+
<li>This is the second numbered list item.</li>
12+
<li>and then the third numbered list item.</li>
13+
<li>First numbered list item.</li>
14+
<li>This is the second numbered list item.</li>
15+
<li><p>and then the third numbered list item.</p>
16+
<ol>
17+
<li>This is an indented numbered list.</li>
18+
<li>This is the second item.</li>
1419
</ol>
15-
</li>
16-
</ol>
20+
</li>
21+
</ol>
22+
</div>
23+
</body>
24+
</html>

tests/Integration/tests/numbered-lists/input/index.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1+
==============
2+
Document Title
3+
==============
4+
15
#. First numbered list item.
26
#. This is the second numbered list item.
37
#. and then the third numbered list item.
48

59
#. First numbered list item.
6-
#. This is second numbered list item.
10+
#. This is the second numbered list item.
711
#. and then the third numbered list item.
812

913
#. This is an indented numbered list.

tests/Integration/tests/numbered-lists/input/skip

Whitespace-only changes.

0 commit comments

Comments
 (0)