mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-01 00:59:08 +01:00
10 lines
No EOL
188 B
Ruby
10 lines
No EOL
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 |