Vedenin / useful-java-links

A list of useful Java frameworks, libraries, software and hello worlds examples
Other
5.87k stars 1.18k forks source link

Use markdown list autonumbering #6

Closed valery1707 closed 8 years ago

valery1707 commented 8 years ago

In you markdown lists used manual numbering:

1. Firefox
2. Chrome
3. Opera

And this will be displayed as:

  1. Firefox
  2. Chrome
  3. Opera

But if we add some item in middle of the that list, we can or change numbers of all other items or use same number twice:

Renumber
1. Firefox
2. Project Tofino
3. Chrome  <<-- changed line
4. Opera  <<-- changed line
Reuse
1. Firefox
1. Project Tofino  <<-- same number
2. Chrome
3. Opera

But both of this lists will be displayed same.

You can declare this list like this:

1. Firefox
1. Project Tofino
1. Chrome
1. Opera

And this list will be displayed with correct numbers:

  1. Firefox
  2. Project Tofino
  3. Chrome
  4. Opera
Vedenin commented 8 years ago

Fixed,

Thank you!