Configure Rails to output HTML output instead of XHTML

后端 未结 4 2014
说谎
说谎 2021-02-04 16:34

How do I configure Ruby on Rails to output standard HTML code instead of XHTML when using helpers (form, javascript, css, etc.)?

I don\'t want to have t

4条回答
  •  日久生厌
    2021-02-04 17:29

    This answer is contained in the link provided by MarkusQ, but I figured I could spell it out exactly.

    You have to modify the code than renders all tags, you can do that by including the following code into something like lib/dont_use_xhtml.rb

    module ActionView::Helpers::TagHelper
      alias :tag_without_backslash :tag
         def tag(name, options = nil, open = true, escape = true)
            tag_without_backslash(name, options, open, escape)
         end 
      end 
    

提交回复
热议问题