Module: Engines
- Defined in:
- app/models/chunks/engines.rb
Overview
The markup engines are Chunks that call the one of RedCloth, BlueCloth or RDoc to convert text. This markup occurs when the chunk is required to mask itself.
Defined Under Namespace
Classes: BlueMarkdown, MarkupEngine, RDoc, RedMarkdown, Textile
Constant Summary collapse
- MAP =
{ :textile => Textile, :red_markdown => RedMarkdown, :blue_markdown => BlueMarkdown, :markdown => BlueMarkdown, :rdoc => RDoc }