行与行之间不可断行
如何使用不间断空格 (& nbsp;) 和没有实际空格的方式连接两个 HAML 行,例如:
= 'foo'
%a(href='http://example.com') bar
我尝试使用 succeed
帮助程序,但它们之间仍然会生成空格。我想删除空格。
How could I join two HAML lines with a non-breaking space (& nbsp;) and no actual space, e.g.:
= 'foo'
%a(href='http://example.com') bar
I tried using the succeed
helper, but a space is still generated between them. I want to remove the space.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是如何使用成功的?空间最后去了哪里?
您是否将其与 空白删除字符 (
"<"
和">"
) 还是自己尝试一下?这会产生:
这真的是你想要的吗?它是“由不间断空格连接的两行,没有实际空格”。
(IMO,HAML 对于内联内容来说是meh ,而且布局没什么乐趣。)
How did you use succeed? Where did the space end up?
Did you combine it with the whitespace removal chars (
"<"
and">"
) or try them on their own?This produces:
Is that literally what you want? It is "two lines joined by a non-breaking space with no actual space."
(IMO, HAML is meh for inline content, and just no fun. Nice for layout.)