- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在用haml写文本:
Blab bla for any questions contact us on me@foo.com.
%p
Blab bla for any questions contact us on
= mail_to 'me@foo.com'
.
= '.'
替换该行(渲染字符串点)
Blab bla for any questions contact us on me@foo.com .
%p
Blab bla for any questions contact us on
= mail_to('me@foo.com') + '.'
最佳答案
我会用这个:
%p
Blab bla for any questions contact us on #{mail_to('me@foo.com')}.
Expressing the structure of a document and expressing inline formatting are two very different problems. Haml is mostly designed for structure, so the best way to deal with formatting is to leave it to other languages that are designed for it.
关于ruby-on-rails - 添加 rails link_to、mail_to 后,haml 删除点之前的空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9499197/
我想执行以下操作来插入样式 mail_to: Reply by Email RoR 文档并未具体针对 mail_to block 的主题,但上面的代码似乎不起作用。有没有办法结合 mail
我正在寻找一种在 mail_to 链接中包含 html 的方法,这样我就可以在这封电子邮件的正文中自动包含一个横幅。 感谢任何提示 马库斯 最佳答案 rails 3 mail_to "email@ex
在我的 Controller 中,我需要格式化一个 json 对象,这就是为什么我需要包含几个助手。 到目前为止,我的 Controller 中有以下内容: include Application
=mail_to "info@somewhere.com", nil, :html_options => {:style => 'font-weight: bold'} 呈现为 info@somewh
我知道您可以像这样将 HTML 类添加到 link_to 帮助程序: 但是 mail_to 助手呢?似乎没有办法像使用 link_to 帮助器那样添加 HTML/CSS 类。 The docs只谈论
我正在用haml写文本: Blab bla for any questions contact us on me@foo.com. 所以哈姆看起来像 %p Blab bla for any que
我是一名优秀的程序员,十分优秀!