800880f382
Start work (which may not pan out) on a new sanitizer. Right now, it passes all but 1 of the HTML5lib Sanitizer's unit tests. But it doesn't do much of anything to ensure well-formedness. This is not an issue for Maruku-processed content, but it is a concern for <nowiki> blocks. (One solution would be to use the HTML5lib parser on <nowiki> blocks.) In any case, this baby is 3 times as fast as the HTML5lib sanitizer.
102 lines
3.2 KiB
Ruby
102 lines
3.2 KiB
Ruby
$: << File.dirname(__FILE__) + "../../lib"
|
|
|
|
require_dependency 'chunks/chunk'
|
|
require 'stringsupport'
|
|
|
|
|
|
# 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
|
|
require 'redcloth'
|
|
redcloth = RedCloth.new(@content, [:hard_breaks] + @content.options[:engine_opts])
|
|
redcloth.filter_html = false
|
|
redcloth.no_span_caps = false
|
|
html = redcloth.to_html(:textile)
|
|
end
|
|
end
|
|
|
|
class Markdown < AbstractEngine
|
|
def mask
|
|
require 'maruku'
|
|
require 'maruku/ext/math'
|
|
|
|
# If the request is for S5, call Maruku accordingly (without math)
|
|
if @content.options[:mode] == :s5
|
|
my_content = Maruku.new(@content.delete("\r").to_utf8,
|
|
{: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
|
|
else
|
|
html = Maruku.new(@content.delete("\r").to_utf8, {:math_enabled => false}).to_html
|
|
html.gsub(/\A<div class="maruku_wrapper_div">\n?(.*?)\n?<\/div>\Z/m, '\1')
|
|
end
|
|
|
|
end
|
|
end
|
|
|
|
class MarkdownMML < AbstractEngine
|
|
def mask
|
|
require 'maruku'
|
|
require 'maruku/ext/math'
|
|
|
|
# If the request is for S5, call Maruku accordingly
|
|
if @content.options[:mode] == :s5
|
|
my_content = Maruku.new(@content.delete("\r").to_utf8,
|
|
{: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
|
|
my_content.to_s5
|
|
else
|
|
html = Maruku.new(@content.delete("\r").to_utf8,
|
|
{:math_enabled => true,
|
|
:math_numbered => ['\\[','\\begin{equation}']}).to_html
|
|
html.gsub(/\A<div class="maruku_wrapper_div">\n?(.*?)\n?<\/div>\Z/m, '\1')
|
|
end
|
|
end
|
|
end
|
|
|
|
class Mixed < AbstractEngine
|
|
def mask
|
|
require 'redcloth'
|
|
redcloth = RedCloth.new(@content, @content.options[:engine_opts])
|
|
redcloth.filter_html = false
|
|
redcloth.no_span_caps = false
|
|
html = redcloth.to_html
|
|
end
|
|
end
|
|
|
|
class RDoc < AbstractEngine
|
|
def mask
|
|
require_dependency 'rdocsupport'
|
|
html = RDocSupport::RDocFormatter.new(@content).to_html
|
|
end
|
|
end
|
|
|
|
MAP = { :textile => Textile, :markdown => Markdown, :markdownMML => MarkdownMML, :mixed => Mixed, :rdoc => RDoc }
|
|
MAP.default = Textile
|
|
end
|