HAML テンプレートのこのヘルパーのどこが間違っていますか?
def display_event(event)
event = MultiJson.decode(event)
markup_class = get_markup_class(event)
haml_tag :li, :class => markup_class do
haml_tag :b, "Foo"
haml_tag :i, "Bar"
end
end
これはエラーです:
haml_tag outputs directly to the Haml template.
Disregard its return value and use the - operator,
or use capture_haml to get the value as a String.
テンプレートは次のように display_event を呼び出しています。
- @events.each do |event|
= display_event(event)
通常のマークアップを使用していた場合、次のように展開されます
%li.fooclass
%b Foo
%i Bar