Haml: Control whitespace around text

前端 未结 13 2137
时光说笑
时光说笑 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:19

    You can do this to keep the leading space:

    %a{:href => 'http://example.com'}>= ' link somewhere'
    

    The space is in the quotes.

提交回复
热议问题