Skip to content

Instantly share code, notes, and snippets.

@mackuba
Last active January 3, 2016 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mackuba/8473751 to your computer and use it in GitHub Desktop.
Save mackuba/8473751 to your computer and use it in GitHub Desktop.
Clean up stupid docs that CAPITALIZE words like MUST or SHOULD and make it very HARD to READ such TEXT.
#!/usr/bin/env ruby
STDIN.each_line do |line|
print line.gsub(/\b[A-Z]{2,}\b/) { |word| word.downcase }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment