highway/app/controllers/info_controller.rb
2025-05-12 15:31:38 -04:00

11 lines
364 B
Ruby

class InfoController < ApplicationController
def show
markdown_file_path = Rails.root.join("app", "views", "info", "info.md")
if File.exist?(markdown_file_path)
markdown_content = File.read(markdown_file_path)
@content = helpers.markdown_to_html(markdown_content)
else
@content = "<p>Markdown file not found.</p>"
end
end
end