highway/app/helpers/application_helper.rb
2025-05-07 22:04:48 -04:00

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