Skip to content
All referenceLists

Markdown Ordered List (Custom Start)

How to start a markdown ordered list at a number other than 1. Syntax, examples, and continuing lists across paragraphs.

What is markdown ordered list (custom start)?

Ordered lists in markdown normally start at 1. By changing the number before the first period, you can start at any number. This is useful when continuing a numbered list after an interruption, or when steps continue from a previous section.

Syntax

Standard (starts at 1)

Normal ordered list. The actual numbers you type do not matter — most parsers use sequential numbering.

Result
  1. First
  2. Second
  3. Third

Start at 5

Use 5. to start the list at 5. The first number sets the start value.

Result
  1. Fifth step
  2. Sixth step
  3. Seventh step

Lazy numbering

All items use 1. — the parser auto-increments. This is valid CommonMark and makes reordering easier.

Result
  1. First
  2. Second
  3. Third

Platform support

PlatformSupportedNotes
GitHubYes
GitLabYes
ObsidianYes
DiscordPartialRenders sequential numbers regardless of source
NotionYes
SlackPartial

Common mistakes

Wrong
Expecting specific numbers to render
Right
Only the first number matters

In CommonMark, only the first list item's number determines the start. Subsequent numbers are ignored — the list auto-increments.

Tips for ordered list (custom start)

1Use lazy numbering for easy reordering

Writing 1. for every item means you never need to renumber when you add or remove steps. Most parsers handle the incrementing automatically.

Frequently asked questions

Everything you need to know.

1

How do I start a markdown numbered list at a number other than 1?

Simply start your first item with the desired number: 5. will begin the list at 5. Only the first item's number affects the starting value.

Related elements

Try it in the editor

Paste your markdown and see ordered list (custom start) rendered instantly with professional themes.