hubfeenix.fi/app/helpers/application_helper.rb

24 lines
545 B
Ruby
Raw Normal View History

2022-12-25 22:32:34 +01:00
require "redcarpet"
2022-11-21 11:10:04 +01:00
module ApplicationHelper
2022-12-25 22:32:34 +01:00
def renderer
options = {hard_wrap: true , autolink: true, no_intra_emphasis: true ,
safe_links_only: true, no_styles: true ,
link_attributes: { target: '_blank' }}
html = Redcarpet::Render::HTML.new(options)
Redcarpet::Markdown.new(html, options)
end
def markdown(text)
2022-12-25 22:32:34 +01:00
text = text.text unless text.is_a?(String)
return "" if text.blank?
self.renderer.render(text).html_safe
end
2022-12-25 22:32:34 +01:00
def main_app
Rails.application.routes.url_helpers
end
2022-12-25 22:32:34 +01:00
2022-11-21 11:10:04 +01:00
end