# frozen_string_literal: true require "uri" class QuestionMarkdown < Redcarpet::Render::StripDown include Rails.application.routes.url_helpers include SharedMarkers def paragraph(text) = "

#{text.gsub("\n", '
')}

" def link(link, _title, _content) process_link(link) end end