-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There were strange group reset logic in case of lists. We need to reset list only if previously there were another active list of different type. Fixes #9
- Loading branch information
Showing
5 changed files
with
53 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Test | ||
|
||
- List item |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<section id="Test"> | ||
<h1>Test</h1> | ||
<ul> | ||
<li> | ||
List item | ||
</li> | ||
</ul> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Test | ||
|
||
- 1 item | ||
* 2 item | ||
1) 3 item | ||
2) 4 item | ||
A) 5 item | ||
B) 6 item |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<section id="Test"> | ||
<h1>Test</h1> | ||
<ul> | ||
<li> | ||
1 item | ||
</li> | ||
</ul> | ||
<ul> | ||
<li> | ||
2 item | ||
</li> | ||
</ul> | ||
<ol> | ||
<li> | ||
3 item | ||
</li> | ||
<li> | ||
4 item | ||
</li> | ||
</ol> | ||
<ol type="A"> | ||
<li> | ||
5 item | ||
</li> | ||
<li> | ||
6 item | ||
</li> | ||
</ol> | ||
</section> |