2007-01-22 14:43:50 +01:00
|
|
|
$: << File.dirname(__FILE__) + "../../lib"
|
|
|
|
|
|
|
|
require_dependency 'chunks/chunk'
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
module Engines
|
|
|
|
class AbstractEngine < Chunk::Abstract
|
|
|
|
|
|
|
|
# Create a new chunk for the whole content and replace it with its mask.
|
|
|
|
def self.apply_to(content)
|
|
|
|
new_chunk = self.new(content)
|
|
|
|
content.replace(new_chunk.mask)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
# Never create engines by constructor - use apply_to instead
|
|
|
|
def initialize(content)
|
|
|
|
@content = content
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Textile < AbstractEngine
|
|
|
|
def mask
|
2008-01-14 21:46:38 +01:00
|
|
|
require 'sanitize'
|
2007-06-13 08:56:44 +02:00
|
|
|
require 'redcloth'
|
2007-01-22 14:43:50 +01:00
|
|
|
redcloth = RedCloth.new(@content, [:hard_breaks] + @content.options[:engine_opts])
|
|
|
|
redcloth.filter_html = false
|
|
|
|
redcloth.no_span_caps = false
|
2007-02-20 06:15:39 +01:00
|
|
|
html = redcloth.to_html(:textile)
|
2007-05-26 03:52:27 +02:00
|
|
|
sanitize_xhtml(html)
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Markdown < AbstractEngine
|
|
|
|
def mask
|
2008-01-14 21:46:38 +01:00
|
|
|
require 'sanitize'
|
2007-06-13 08:56:44 +02:00
|
|
|
require 'maruku'
|
|
|
|
require 'maruku/ext/math'
|
2007-09-14 17:43:03 +02:00
|
|
|
|
|
|
|
# If the request is for S5, call Maruku accordingly (without math)
|
|
|
|
if @content.options[:mode] == :s5
|
|
|
|
my_content = Maruku.new(@content.delete("\r"), {:math_enabled => false,
|
|
|
|
:content_only => true,
|
|
|
|
:author => @content.options[:engine_opts][:author],
|
|
|
|
:title => @content.options[:engine_opts][:title]})
|
|
|
|
@content.options[:renderer].s5_theme = my_content.s5_theme
|
|
|
|
sanitize_xhtml(my_content.to_s5)
|
|
|
|
else
|
2007-09-15 01:09:24 +02:00
|
|
|
html = sanitize_rexml(Maruku.new(@content.delete("\r"),
|
2007-09-14 17:43:03 +02:00
|
|
|
{:math_enabled => false}).to_html_tree)
|
2007-09-15 01:09:24 +02:00
|
|
|
html.gsub(/\A<div class="maruku_wrapper_div">\n?(.*?)\n?<\/div>\Z/m, '\1')
|
2007-09-14 17:43:03 +02:00
|
|
|
end
|
|
|
|
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-01-22 15:36:51 +01:00
|
|
|
class MarkdownMML < AbstractEngine
|
|
|
|
def mask
|
2008-01-14 21:46:38 +01:00
|
|
|
require 'sanitize'
|
2007-06-13 08:56:44 +02:00
|
|
|
require 'maruku'
|
|
|
|
require 'maruku/ext/math'
|
2007-09-14 17:43:03 +02:00
|
|
|
|
|
|
|
# If the request is for S5, call Maruku accordingly
|
|
|
|
if @content.options[:mode] == :s5
|
|
|
|
my_content = Maruku.new(@content.delete("\r"), {:math_enabled => true,
|
|
|
|
:math_numbered => ['\\[','\\begin{equation}'],
|
|
|
|
:content_only => true,
|
|
|
|
:author => @content.options[:engine_opts][:author],
|
|
|
|
:title => @content.options[:engine_opts][:title]})
|
|
|
|
@content.options[:renderer].s5_theme = my_content.s5_theme
|
|
|
|
sanitize_xhtml(my_content.to_s5)
|
|
|
|
else
|
2007-10-15 04:07:46 +02:00
|
|
|
html = sanitize_rexml(Maruku.new(@content.delete("\r"),
|
2007-09-14 17:43:03 +02:00
|
|
|
{:math_enabled => true,
|
2007-10-15 04:07:46 +02:00
|
|
|
:math_numbered => ['\\[','\\begin{equation}']}).to_html_tree)
|
2007-09-14 17:43:03 +02:00
|
|
|
html.gsub(/\A<div class="maruku_wrapper_div">\n?(.*?)\n?<\/div>\Z/m, '\1')
|
|
|
|
end
|
|
|
|
|
2007-01-22 15:36:51 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-01-22 14:43:50 +01:00
|
|
|
class Mixed < AbstractEngine
|
|
|
|
def mask
|
2008-01-14 21:46:38 +01:00
|
|
|
require 'sanitize'
|
2007-06-13 08:56:44 +02:00
|
|
|
require 'redcloth'
|
2007-01-22 14:43:50 +01:00
|
|
|
redcloth = RedCloth.new(@content, @content.options[:engine_opts])
|
|
|
|
redcloth.filter_html = false
|
|
|
|
redcloth.no_span_caps = false
|
2007-02-20 15:18:48 +01:00
|
|
|
html = redcloth.to_html
|
2007-05-26 03:52:27 +02:00
|
|
|
sanitize_xhtml(html)
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class RDoc < AbstractEngine
|
|
|
|
def mask
|
2008-01-14 21:46:38 +01:00
|
|
|
require 'sanitize'
|
2007-01-22 14:43:50 +01:00
|
|
|
require_dependency 'rdocsupport'
|
2007-02-20 15:18:48 +01:00
|
|
|
html = RDocSupport::RDocFormatter.new(@content).to_html
|
2007-05-26 03:52:27 +02:00
|
|
|
sanitize_xhtml(html)
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-01-22 15:36:51 +01:00
|
|
|
MAP = { :textile => Textile, :markdown => Markdown, :markdownMML => MarkdownMML, :mixed => Mixed, :rdoc => RDoc }
|
2007-01-22 14:43:50 +01:00
|
|
|
MAP.default = Textile
|
|
|
|
end
|