sindresorhus/refined-github

Improve auto-inserted ordered list markup #3895

agarzola posted onGitHub

GitHub recently introduced a feature which auto-inserts list markup (e.g. - for unordered, - [ ] for checklists) when the Enter key is pressed from an existing list item within a comment field. The issue with this implementation is that it auto-increments the number on ordered lists, so if you enter this:

1. This is my first item.

And press Enter, you get this:

1. This is my first item.
2. 

The problem with this is that it hard-codes the item numbers into the comment, which makes it cumbersome to reorder it otherwise modify the list items in the ordered list. So if I wanted to add an item below the first item, I would end up with this:

1. This is my first item.
2. Newly inserted item.
2. This is item number two.
3. My third item.

It would be an improvement to have ordered lists always use 1. to denote a new ordered list item (i.e. do not auto-increment the number), so that modifying the list does not result in item numbers that are out of order. Markdown will still correctly identify the list as an ordered list. The resulting markup should look like this:

1. This is my first item.
1. Newly inserted item.
1. This is item number two.
1. My third item.

Is this feasible?


As for where this feature should appear, the comment field at the bottom of this very issue page is a great example. šŸ˜„ Of course, it should apply to any comment field where GitHub auto-increments ordered list markup.


Is this feasible?

It's feasible, but is it worth it? 1. or 90. work the same and they're then forgotten forever once you post the comment. Changing this value means either reimplementing the whole logic or changing the text after it's been injected by GitHub, which then causes another undo history entry.

posted by fregante about 4 years ago

šŸ¤” You make a good point. I suppose it hadnā€™t occurred to me that as long as itā€™s a number at the beginning of a line, Markdown will interpret that to mean itā€™s another item in the ordered list.

So this:

1. Hello!
4. Oh, noes!
2. Originally the second item
3. Third item
10. Item with `10.` in front of it

Renders to this:

  1. Hello!
  2. Oh, noes!
  3. Originally the second item
  4. Third item
  5. Item with 10. in front of it

Iā€™ll let maintainers determine whether this is worth pursuing or whether it should be closed (seeing there are a couple of šŸ‘s on the original post), but ā€”as irritating as I find this behaviorā€” I do think @freganteā€™s reasoning is sound.

posted by agarzola about 4 years ago

as long as itā€™s a number at the beginning of a line

Correct. The only number that matters is the one at the beginning of the list

  1. so you can start your list with
  2. whatever number you please
  3. even if it breaks the layout
posted by fregante about 4 years ago

Sorry but I'll have to close this. It feels like a lot of code and potential for conflict and lack of future features to be worth the minimal, non-user-facing improvement.

posted by fregante almost 4 years ago

Fund this Issue

$0.00
Funded

Pull requests