Haml: Control whitespace around text

前端 未结 13 2144
时光说笑
时光说笑 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(", ")
    

提交回复
热议问题