Created
August 27, 2012 10:57
-
-
Save andyhawthorne/3487455 to your computer and use it in GitHub Desktop.
Sinatra helper
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
helpers do | |
def formatter(page) | |
formatted = "" | |
formatted = page.gsub(/[-]/, ' ').capitalize | |
return formatted | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment