PR #5 added an example of a decorator for alphabetical sorting. Someone highlighted the importance of case-sensitivity. Here's a paraphrased example of sorting challenges caused by casing: > Pretend you're looking for the term "API Keys" on an alphabetically sorted list. Which order would you expect? > | Case sensitive | **Not** case-sensitive | > | ------------- | ------------- | > | AML <br /> API keys <br /> Accounts <br /> Allowlists <br /> Application owners <br /> Application users <br /> Coupons | Accounts <br /> Allowlists <br /> AML <br /> API keys <br /> Application owners <br /> Application users <br /> Coupons | The redocly-cli solved for this using an [ignoreCase flag](https://github.com/search?q=repo%3ARedocly%2Fredocly-cli%20ignorecase&type=code). A similar solution might work well here.
PR #5 added an example of a decorator for alphabetical sorting. Someone highlighted the importance of case-sensitivity.
Here's a paraphrased example of sorting challenges caused by casing:
The redocly-cli solved for this using an ignoreCase flag. A similar solution might work well here.