Class: HamlFilter
- Inherits:
-
TextFilter
- Object
- TextFilter
- HamlFilter
- Defined in:
- app/models/haml_filter.rb
Instance Method Summary collapse
Methods inherited from TextFilter
descendants_names, filter, find_descendant, inherited
Methods included from Annotatable
Methods included from Simpleton
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(/<(\/)?r:(.+?)\s*(\/?\\?)>/m, '<\\1r:\\2\\3>') end |