Class: Engines::Textile
- Inherits:
-
MarkupEngine
- Object
- Chunk::Abstract
- MarkupEngine
- Engines::Textile
- Defined in:
- app/models/chunks/engines.rb
Instance Attribute Summary
Attributes inherited from Chunk::Abstract
Instance Method Summary collapse
Methods inherited from MarkupEngine
Methods inherited from Chunk::Abstract
#initialize, #post_mask, #pre_mask, #revert, #unmask
Constructor Details
This class inherits a constructor from Chunk::Abstract
Instance Method Details
#mask(content) ⇒ Object
15 16 17 18 19 |
# File 'app/models/chunks/engines.rb', line 15 def mask(content) rc = RedCloth.new(text,content.[:engine_opts]) rc.rules = [:textile] if RedCloth::VERSION >= '3.0.0' rc.to_html end |