2012-07-25 21:01:01 +00:00
|
|
|
MKD_SAFE_RENDERER = Redcarpet::Markdown.new(
|
2012-06-10 13:28:51 +00:00
|
|
|
Redcarpet::Render::HTML.new(:filter_html => true, :hard_wrap => true),
|
2012-04-06 21:46:44 +00:00
|
|
|
:no_intra_emphasis => true,
|
|
|
|
:autolink => true
|
|
|
|
)
|
2012-07-25 21:01:01 +00:00
|
|
|
|
|
|
|
MKD_RENDERER = Redcarpet::Markdown.new(
|
|
|
|
Redcarpet::Render::HTML.new,
|
|
|
|
:no_intra_emphasis => true,
|
|
|
|
:autolink => true
|
|
|
|
)
|