-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into feat-picture-description
- Loading branch information
Showing
9 changed files
with
181 additions
and
53 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
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
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,31 @@ | ||
# Nesting | ||
|
||
A list featuring nesting: | ||
|
||
- abc | ||
- abc123 | ||
- abc1234 | ||
- abc12345 | ||
- a. | ||
- b. | ||
- abcd1234: | ||
- abcd12345: | ||
- a. | ||
- b. | ||
- def: | ||
- def1234: | ||
- def12345。 | ||
- after one empty line | ||
- foo | ||
- afer two empty lines | ||
- bar | ||
|
||
- changing symbol | ||
|
||
A nested HTML list: | ||
|
||
- First item | ||
- Second item with subitems: | ||
- Subitem 1 | ||
- Subitem 2 | ||
- Last 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,66 @@ | ||
# Nesting | ||
|
||
A list featuring nesting: | ||
|
||
- abc | ||
- abc123 | ||
- abc1234 | ||
- abc12345 | ||
- a. | ||
- b. | ||
- abcd1234: | ||
- abcd12345: | ||
- a. | ||
- b. | ||
- def: | ||
- def1234: | ||
- def12345。 | ||
|
||
- after one empty line | ||
- foo | ||
|
||
|
||
- afer two empty lines | ||
- bar | ||
* changing symbol | ||
|
||
A nested HTML list: | ||
|
||
<ul> | ||
<li>First item</li> | ||
<li>Second item with subitems: | ||
<ul> | ||
<li>Subitem 1</li> | ||
<li>Subitem 2</li> | ||
</ul> | ||
</li> | ||
<li>Last list item</li> | ||
</ul> | ||
|
||
<!-- | ||
Table nesting apparently not yet suported by HTML backend: | ||
<table> | ||
<tr> | ||
<td>Cell</td> | ||
<td>Nested Table | ||
<table> | ||
<tr> | ||
<td>Cell 1</td> | ||
<> | ||
</tr> | ||
<tr> | ||
<td>Cell 2</td> | ||
</tr> | ||
<tr> | ||
<td>Cell 3</td> | ||
</tr> | ||
<tr> | ||
<td>Cell 4</td> | ||
</tr> | ||
</table> | ||
</td> | ||
</tr> | ||
<tr><td>additional row</td></tr> | ||
</table> | ||
--> |
Oops, something went wrong.