-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
82 additions
and
24 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,30 @@ | ||
<div class='mp'> | ||
|
||
<h1 id="Ordered-Lists">Ordered Lists</h1> | ||
<h2 id="Simple-ordered-lists">Simple ordered lists</h2> | ||
|
||
<h3 id="One-item-list">One-item list</h3> | ||
|
||
<ol> | ||
<li>Hello, world!</li> | ||
</ol> | ||
|
||
|
||
<h3 id="Three-item-list">Three-item list</h3> | ||
|
||
<ol> | ||
<li>Hello, world!</li> | ||
<li>Item 2</li> | ||
<li>Item 3</li> | ||
</ol> | ||
|
||
|
||
<h3 id="Four-item-list-with-all-1s">Four-item list with all 1s</h3> | ||
|
||
<ol> | ||
<li>Item 1</li> | ||
<li>Item 2</li> | ||
<li>Item 3</li> | ||
<li>Item 4</li> | ||
</ol> | ||
</div> |
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,25 @@ | ||
.TH "ORDERED_LIST" "" "January 1979" "" "" | ||
.SH "Simple ordered lists" | ||
.SS "One\-item list" | ||
.IP "1." 4 | ||
Hello, world! | ||
.IP "" 0 | ||
.SS "Three\-item list" | ||
.IP "1." 4 | ||
Hello, world! | ||
.IP "2." 4 | ||
Item 2 | ||
.IP "3." 4 | ||
Item 3 | ||
.IP "" 0 | ||
.SS "Four\-item list with all 1s" | ||
.IP "1." 4 | ||
Item 1 | ||
.IP "2." 4 | ||
Item 2 | ||
.IP "3." 4 | ||
Item 3 | ||
.IP "4." 4 | ||
Item 4 | ||
.IP "" 0 | ||
|
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,21 @@ | ||
Ordered Lists | ||
============= | ||
|
||
## Simple ordered lists | ||
|
||
### One-item list | ||
|
||
1. Hello, world! | ||
|
||
### Three-item list | ||
|
||
1. Hello, world! | ||
2. Item 2 | ||
3. Item 3 | ||
|
||
### Four-item list with all 1s | ||
|
||
1. Item 1 | ||
1. Item 2 | ||
1. Item 3 | ||
1. Item 4 |