行与行之间不可断行

发布于 2024-12-25 13:58:07 字数 185 浏览 0 评论 0原文

如何使用不间断空格 (& 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沫雨熙 2025-01-01 13:58:07

您是如何使用成功的?空间最后去了哪里?

您是否将其与 空白删除字符 ("<"">") 还是自己尝试一下?

= succeed ' '.html_safe do
  = 'foo'
%a(href='http://example.com')> bar

这会产生:

foo <a href='http://example.com'>bar</a>

这真的是你想要的吗?它是“由不间断空格连接的两行,没有实际空格”。

(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?

= succeed ' '.html_safe do
  = 'foo'
%a(href='http://example.com')> bar

This produces:

foo <a href='http://example.com'>bar</a>

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.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文