You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/config/initializers/markdown.rb

12 lines
294 B
Ruby

MKD_SAFE_RENDERER = Redcarpet::Markdown.new(
Redcarpet::Render::HTML.new(:filter_html => true, :hard_wrap => true),
:no_intra_emphasis => true,
:autolink => true
)
MKD_RENDERER = Redcarpet::Markdown.new(
Redcarpet::Render::HTML.new,
:no_intra_emphasis => true,
:autolink => true
)