Mocking SpongeBob text
Tidy the spacing, then alternate the capitals: tHiS kInD oF tExT.
The mocking SpongeBob format is one sentence written in alternating capitals, and the joke only lands if the alternation is regular. Stray double spaces and a ragged copy-paste break the rhythm, so this chain tidies the spacing first and flips the case second.
Both steps run in your browser, so the quote you are dunking on never leaves your device. Paste the sentence below and copy the result straight into a reply.
Questions
Why clean the spacing first?
The alternation counts letters as it walks the string. Double spaces and trailing whitespace from a copy-paste survive into the output and make the pattern look uneven, so they go first.
Does it alternate every character or every letter?
Every letter. Spaces and punctuation keep their place and do not consume a turn, which is what keeps the capitals evenly spread across words.
Will it work on emoji and accents?
Emoji pass through untouched. Accented letters are flipped like any other letter, so á becomes Á.
Build your own chain in the pipeline builder.