biocircuits/views/pages/markdown_page.rb
Aleks Rūtiņš f42ff5da9b It works!
2024-12-25 15:17:50 -05:00

20 lines
572 B
Ruby

module BC
module Views
module Pages
class MarkdownPage < ::Phlex::HTML
def initialize(content, title, prev, fwd)
@content = content
@title = title
@prev = prev
@fwd = fwd
end
def view_template
render PageLayout.new(@title, @prev, @fwd) do
unsafe_raw Kramdown::Document.new(@content).to_html
end
end
end
end
end
end