### Multi-line Sorting Example Source: https://github.com/lafittemehdy/linesort/blob/master/README.md Demonstrates case-sensitive ASCII sorting for multiple lines. Special characters, numbers, and uppercase letters appear before lowercase letters. ```text Before: After: zebra !exclaim Apple 123 banana @mention @mention Apple 123 Banana !exclaim banana Banana zebra ``` -------------------------------- ### Inline Element Sorting Example Source: https://github.com/lafittemehdy/linesort/blob/master/README.md Shows sorting of comma, semicolon, pipe, or space-separated lists within a single line. Supports lists in brackets, braces, parentheses, and quotes, while preserving prefixes and normalizing spacing. ```javascript // Before const tags = ['zebra', 'alpha', 'mango']; const values = '10, 5, 100, 1'; const params = 'd|a|c|b'; // After const tags = ['alpha', 'mango', 'zebra']; const values = '1, 10, 100, 5'; const params = 'a | b | c | d'; ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.