Haml: Control whitespace around text

前端 未结 13 2135
时光说笑
时光说笑 2020-11-30 16:38

In my Rails template, I\'d like to accomplish final HTML to this effect using HAML:

I will first link somewhere

        
相关标签:
13条回答
  • 2020-11-30 17:37

    You could also always do:

    = link_to url_path do 
      = ["part_1", "part_2"].join(", ")
    
    0 讨论(0)
提交回复
热议问题