mirror of
https://github.com/kennethreitz/12factor.git
synced 2026-06-05 23:10:17 +00:00
14 lines
193 B
Ruby
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
|