Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add a custom format in Rails (that will work with respond_to) [duplicate]

I have map.resources :posts and I want to be able to serve post bodies in markdown format. So I set up my respond_to block:

respond_to do |format|
  format.markdown {
    render :text => @post.body.to_s
  }
end

But when I try to access /posts/1234.markdown, I get this error:

NameError (uninitialized constant Mime::MARKDOWN):
  app/controllers/posts_controller.rb:96:in `show'
  app/controllers/posts_controller.rb:79:in `show'

How do I add markdown as an acceptable format? Where can I see the list of acceptable formats?

like image 687
Tom Lehman Avatar asked Mar 16 '10 16:03

Tom Lehman


2 Answers

http://weblog.rubyonrails.org/2006/12/19/using-custom-mime-types

# add in config/initializers/mime_types.rb
Mime::Type.register "text/markdown", :markdown
like image 79
clyfe Avatar answered Sep 20 '22 18:09

clyfe


Mime::Types.register
like image 28
yfeldblum Avatar answered Sep 20 '22 18:09

yfeldblum