Class: Engines::Mixed

Inherits:
AbstractEngine show all
Defined in:
app/models/chunks/engines.rb

Instance Attribute Summary

Attributes inherited from Chunk::Abstract

#text, #unmask_mode, #unmask_text

Instance Method Summary collapse

Methods inherited from AbstractEngine

apply_to

Methods inherited from Chunk::Abstract

apply_to, #escaped?, #id, inherited, #initialize, mask_re, mask_string, #rendered?, #revert, #unmask

Instance Method Details

#maskObject



45
46
47
48
49
50
# File 'app/models/chunks/engines.rb', line 45

def mask
  redcloth = RedCloth.new(@content, @content.options[:engine_opts])
  redcloth.filter_html = false
  redcloth.no_span_caps = false
  redcloth.to_html
end