1. Clean, deduplicate, and sort a list
Content editorBackground
An editor receives a short list with extra spaces, duplicate entries, and inconsistent capitalization.
Problem
The list needs consistent spacing, case-insensitive deduplication, and alphabetical ordering.
How to use
Paste the list into Text Input and provide a version 1 recipe with trim, whitespace normalization, case-insensitive unique lines, and ascending case-insensitive sorting.
{"version":1,"steps":[{"op":"trim"},{"op":"normalizeWhitespace","preserveLines":true},{"op":"uniqueLines","caseSensitive":false},{"op":"sortLines","order":"ascending","caseSensitive":false}]}Outcome
The result contains a cleaned final list plus normalized recipe data, per-step changes, timing, character statistics, and bounded line diffs.