module CapitalizeAll
Capitalize all words of the input
Public Instance Methods
capitalizeall(words)
click to toggle source
# File _plugins/jekyll-capitalize-all.rb, line 6 def capitalizeall(words) return words.split(' ').map(&:capitalize).join(' ') end