What is the difference between slugify and removing accents?
Removing accents only swaps "ç" for "c" and "ã" for "a", keeping spaces, capitalization and punctuation; slugify does that and, on top of it, swaps spaces for hyphens and drops everything to lowercase, producing text ready to become part of a URL.
Why is a regex pattern that looks valid rejected?
Because it contains an unbounded quantifier nested inside another unbounded quantifier, like `(a+)+` or `(\d+)*`; that shape can make the browser’s regex engine hang trying too many combinations, and since that calculation cannot be interrupted mid-way, the tool refuses the pattern before it runs.
Can I chain multiple transformations, like removing accents and then lowercasing?
Yes, that is the whole reason the pipeline exists: each operation added runs on the previous one’s output, so removing accents followed by lowercase processes the text in two passes, in the order the steps appear in the list.
Is there a file size limit for uploading to the formatter?
Yes, local file uploads accept up to 2 MB (2,097,152 bytes); larger files need to be split beforehand or pasted in chunks directly into the text field.