嘿伙计们我遇到了一个问题:
如果使用这样的东西:
!!! XML !!! %html %head %title myspace %body %h1 I am the international space station %p Sign my guestbook
我只将此作为来源:
<!DOCTYPE html> <html> <head> <title>myspace</title> </head> <body> <h1>I am the international space station</h1> <p>Sign my guestbook</p> </body> </html>
谢谢你的帮助 :)
解决方法
根据
HAML documentation,除了使用HTML5的Rails 3之外,XHTML是默认的DOCTYPE.您可以设置:format选项以覆盖.
在config / environment.rb中:
Haml::Template.options[:format] = :xhtml