asciinema.org/config/initializers/markdown.rb

12 lines
294 B
Ruby
Raw Normal View History

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
)
MKD_RENDERER = Redcarpet::Markdown.new(
Redcarpet::Render::HTML.new,
:no_intra_emphasis => true,
:autolink => true
)