Module: Flowcation::Render

Defined in:
lib/flowcation/render.rb

Class Method Summary collapse

Class Method Details

.sanitize(s) ⇒ Object



3
4
5
6
7
8
9
10
# File 'lib/flowcation/render.rb', line 3

def self.sanitize(s)
  s.
  gsub("%>", "%>").
  gsub("&lt;%", "<%").
  gsub("\r\n", "\n").
  gsub("%20", " ").
  gsub("&amp;", "&")
end