【发布时间】:2013-06-27 13:33:08
【问题描述】:
我想将原始 html 传递给 @helper 宏...这可能吗?例如:
@helper oneColumn(string content) {
<div class="row">
<div class="twelve columns">
@content
</div>
</div>
}
@put.oneColumn(
<h1 id="page-heading">HELLO WORLD!</h1>
)
【问题讨论】: