/* name: Downcase description: Converts your text to lowercase. author: Polypad tags: downcase,lowercase */ function main(input) { input.text = input.text.toLowerCase(); […]