mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-20 05:42:40 +01:00
Explicitly document that lists can start at a number other than 1
Summary: Fixes T8584. Test Plan: {F582256} Reviewers: btrahan, chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T8584 Differential Revision: https://secure.phabricator.com/D13543
This commit is contained in:
parent
1f4cd900f3
commit
a7cfc58353
1 changed files with 18 additions and 0 deletions
|
@ -92,6 +92,9 @@ You can optionally omit the trailing `=` signs -- that is, these are the same:
|
||||||
This produces headers like the ones in this document. Make sure you have an
|
This produces headers like the ones in this document. Make sure you have an
|
||||||
empty line before and after the header.
|
empty line before and after the header.
|
||||||
|
|
||||||
|
Lists
|
||||||
|
=====
|
||||||
|
|
||||||
Make **lists** by beginning each item with a `-` or a `*`:
|
Make **lists** by beginning each item with a `-` or a `*`:
|
||||||
|
|
||||||
lang=text
|
lang=text
|
||||||
|
@ -117,6 +120,21 @@ You can make numbered lists with a `#` instead of `-` or `*`:
|
||||||
# Zapdos
|
# Zapdos
|
||||||
# Moltres
|
# Moltres
|
||||||
|
|
||||||
|
Numbered lists can also be started with `1.` or `1)`. If you use a number other
|
||||||
|
than `1`, the list will start at that number instead. For example, this:
|
||||||
|
|
||||||
|
```
|
||||||
|
200) OK
|
||||||
|
201) Created
|
||||||
|
202) Accepted
|
||||||
|
```
|
||||||
|
|
||||||
|
...produces this:
|
||||||
|
|
||||||
|
200) OK
|
||||||
|
201) Created
|
||||||
|
202) Accepted
|
||||||
|
|
||||||
You can also nest lists:
|
You can also nest lists:
|
||||||
|
|
||||||
```- Body
|
```- Body
|
||||||
|
|
Loading…
Reference in a new issue