Page MenuHomePhabricator

Start a numbered list at a given number
Closed, ResolvedPublic

Description

Feature request
Start a numbered list at a given number different from 1

Use Case Exemple
I'm currently writing a usecase, and I'd like to start a numbered list at 3 in this case :
Scenario :

  1. The leader enter a player's name and click on "add to the team"
  2. The player accept the invitation

Alternative Scenario :

  1. The player refuse the invitation

-> Here, I'd like the alternative Scenario to begin at 2., but I didn't found any solution to that.
It could be (inspired from the "# [X]" syntax) :
"# {2} The player refuse the invitation"

Benefits
Phriction would be more complete and flexible, more practical to use

Event Timeline

diogyn raised the priority of this task from to Needs Triage.
diogyn updated the task description. (Show Details)
diogyn added a project: Phriction.
diogyn moved this task to Backlog on the Phriction board.
diogyn updated the task description. (Show Details)
diogyn added a subscriber: diogyn.

You can do this:

1. Some
# Item

And after:
3. Here!
# More items

Which outputs as:

  1. Some
  2. Item

And after:

  1. Here!
  2. More items

Well thanks !
But it still shows a problem : this solution is not present in the documentation : https://secure.phabricator.com/book/phabricator/article/remarkup/
Or is it just me ?