我有一些Haml部分,其中许多包含样板
.container
.row
.col-lg-12
当我试图将ala = partial "site_section"
抽象出来时,我得到了:
syntax error, unexpected keyword_end, expecting end-of-input end;end;end;end
我正在使用ruby 2.2.2。
如何在Middleman的Haml部分内渲染Haml?
由于
更新 这显然是处理我的部分(上图)的某种特殊情况。我还有其他部分内部渲染效果很好。
更新 关于这个this repo,布局实际上是:
_site_section:
.container
.row
.col-lg-12
_nested_section:
= partial "site_section"
MOAR (nested) HAML
index.haml:
=partial "nested_section"
答案 0 :(得分:1)
由于HAML的工作方式,以下内容无效:
= partial "site_section"
MOAR (nested) HAML
如果您想添加更多文本或HAML,那么您可以通过将文本放在上一行的同一级别来实现它
= partial "site_section"
MOAR (nested) HAML
或将其嵌套在div中:
= partial "site_section"
.more
MOAR (nested) HAML
因此,如果您要做的是将额外的HAML嵌套到 site_section partial的输出中,那么您必须将嵌套的额外HAML放在嵌套的部分中:
.container
.row
.col-lg-12
= partial 'nested_stuff'
= partial 'nested_stuff'
希望这有帮助,我更新了repo with the working example。