0

Is it possible to assign the value of a variable to a block? Either it is not possible or I'm doing it wrong.

Example:

- var $foo = "bar"

block #{$foo}
    div.a_class Some content
4

1 回答 1

1

这是不可能的,因为块是编译时的,而不是运行时的。

于 2013-04-26T09:30:27.090 回答