Class: HamlFilter

Inherits:
TextFilter
  • Object
show all
Defined in:
app/models/haml_filter.rb

Instance Method Summary collapse

Instance Method Details

#filter(text) ⇒ Object



2
3
4
# File 'app/models/haml_filter.rb', line 2

def filter(text)
  Haml::Engine.new(text).render.gsub(/&lt;(\/)?r:(.+?)\s*(\/?\\?)&gt;/m,"<\\1r:\\2\\3>")
end