mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-13 21:33:20 +01:00
10 lines
188 B
Ruby
10 lines
188 B
Ruby
|
require 'uri'
|
||
|
|
||
|
class QuestionMarkdown < Redcarpet::Render::Base
|
||
|
include Rails.application.routes.url_helpers
|
||
|
include SharedMarkers
|
||
|
|
||
|
def paragraph(text)
|
||
|
"<p>#{text}</p>"
|
||
|
end
|
||
|
end
|