Files
12factor/web.rb
T
Adam Wiggins 2b06e7deab init
2011-06-03 00:29:00 -07:00

14 lines
193 B
Ruby

require 'sinatra'
require 'maruku'
get '/' do
erb :home
end
helpers do
def render_markdown(file)
markdown = File.read("content/#{file}.md")
Maruku.new(markdown).to_html
end
end