Added some Textile rules to markdown option, in an attempt to force RedCloth to _really_ render Markdown

This commit is contained in:
Alexey Verkhovsky 2005-04-10 03:18:10 +00:00
parent 363276e436
commit ee876a2907
2 changed files with 21 additions and 1 deletions

View file

@ -33,7 +33,7 @@ module Engines
class Markdown < AbstractEngine
def mask
RedCloth.new(@content, @content.options[:engine_opts]).to_html(:markdown)
RedCloth.new(@content, @content.options[:engine_opts]).to_html(:block_textile_lists, :inline_textile_span, :markdown)
end
end