Module: Engines

Defined in:
app/models/chunks/engines.rb

Overview

The markup engines are Chunks that call the one of RedCloth or RDoc to convert text. This markup occurs when the chunk is required to mask itself.

Defined Under Namespace

Classes: AbstractEngine, Markdown, Mixed, RDoc, Textile

Constant Summary collapse

MAP =
{ :textile => Textile, :markdown => Markdown, :mixed => Mixed, :rdoc => RDoc }