When using HAML, is there a way to use heredoc or %Q{ … }?

…衆ロ難τιáo~ 提交于 2019-12-06 17:49:27

A good way to do this would be to use the :ruby filter or load the needed content into a Ruby variable and pass it into HAML the normal way.

I think this is what "the Tin Man" meant.

:ruby                                                                                                                                                                                        
  text =<<-EOT                                                                                                                                                                               
  Hi,                                                                                                                                                                                        
    Please find some heredoc text                                                                                                                                                            
      right here                                                                                                                                                                             

  Bye                                                                                                                                                                                        
  EOT                                                                                                                                                                                        

%pre=text                                                                                                                                                                                    

I could not add this as a comment to his post, sorry!

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!