如何给红宝石中的空白增添纤细

时间:2015-11-23 07:54:10

标签: ruby-on-rails slim-lang

我想用空格分隔货币和总额。

请建议我一个解决方案 任何帮助将不胜感激。

p
strong Total:
span
    = @order.currency
    = humanized_money_with_symbol @order.total_paisas/100

2 个答案:

答案 0 :(得分:7)

您还可以使用超薄输出=>=<

https://github.com/slim-template/slim#output-

在第一个输出上使用尾随空格

p
strong Total:
span
    => @order.currency
    = humanized_money_with_symbol @order.total_paisas/100

或在第二个输出上使用前导空格

p
strong Total:
span
    = @order.currency
    =< humanized_money_with_symbol @order.total_paisas/100

答案 1 :(得分:0)

verbatim text with trailing space 有特殊的语法, 那个语法只是一个单引号:

= @user.first_name
'
= @user.last_name

| &nbsp;join(' ') 和字符串插值只是变通方法。