Text line manipulation is a fundamental part of data processing. This tool provides a collection of the most common line-level text operations — shuffling lists, reversing order, joining lines, rotating lists, and adding HTML or CSV prefixes and suffixes to each line.
Paste your items one per line, select "Add prefix/suffix", set prefix to <li> and suffix to </li>, then click Run. The output will be ready to paste inside <ul> or <ol> tags.
The shuffle uses Math.random() via the Fisher-Yates algorithm, which provides uniform randomness. It is suitable for most purposes but is not cryptographically secure — don't use it for lottery draws or security-sensitive applications.