mirror of
https://github.com/System-End/highway.git
synced 2026-04-19 19:45:10 +00:00
11 lines
173 B
Ruby
11 lines
173 B
Ruby
module ApplicationHelper
|
|
|
|
def show_sidebar?
|
|
!current_page?(root_path)
|
|
end
|
|
|
|
def markdown_to_html(markdown)
|
|
Kramdown::Document.new(markdown).to_html
|
|
end
|
|
|
|
end
|