Skip to content

Instantly share code, notes, and snippets.

@andyhawthorne
Created August 26, 2012 23:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andyhawthorne/3484171 to your computer and use it in GitHub Desktop.
Save andyhawthorne/3484171 to your computer and use it in GitHub Desktop.
view method
get '/view/:link' do
halt 404 unless File.exist?("views/posts/#{params[:link]}.md")
markdown :"posts/#{params[:link]}", :layout_engine => :erb
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment