1
0
Fork 0

Add a plugin to capitalize every word

This commit is contained in:
Luca Beltrame 2015-05-10 00:23:40 +02:00
parent 1cf3472b0b
commit 2a72ff3658

View file

@ -0,0 +1,11 @@
require 'liquid'
require 'uri'
# Capitalize all words of the input
module CapitalizeAll
def capitalize_all(words)
return words.split(' ').map(&:capitalize).join(' ')
end
end
Liquid::Template.register_filter(CapitalizeAll)