mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
10 lines
232 B
Ruby
10 lines
232 B
Ruby
class PagePresenter < SimpleDelegator
|
|
def content_as_html
|
|
PagePresenter.markdown.render(content).html_safe
|
|
end
|
|
|
|
def self.markdown
|
|
@markdown = Redcarpet::Markdown.new(Redcarpet::Render::HTML, extensions = {})
|
|
end
|
|
end
|