用haml显示正斜杠?

时间:2013-06-28 06:59:31

标签: haml

在haml中,我想显示5 / 174。分子,正斜线,分母。

= @numerator
/
= denominator

我的解决方法:

= @numerator
- slash = "/"
= slash
= denominator

1 个答案:

答案 0 :(得分:8)

我会使用interpolation with #{}来做这样的事情:

#{@numerator} / #{denominator}

(注意你一开始不需要=

如果你真的想在Haml中用/字符(或任何其他特殊字符)开始一行,你可以escape it with \例如

= @numerator
\/
= denominator