-
Notifications
You must be signed in to change notification settings - Fork 781
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docs: Fix categories to sort by title instead of filename
The default seems to be sorted by filename, which would be good enough if it weren't for the fact that it includes the `.md` file extension, and thus, after we introduced `test.each.md`, the sorting was: * test.each * test * test.only * test.skip * test.todo because `each` < `md`: * test.each.md * test.md * test.only.md * test.skip.md * test.todo.md Fix by adding an explicit sort for the `title` key. Ref #1569.
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters