我正在使用Octopress 2.0,并且在设置包含时似乎无法获取参数。
我基本上是想做:
{%include foo.html bar =“Hello World”%}
当我加载页面时,我收到此错误:包含文件'foo.html bar =“Hello World”'包含无效字符或序列
根据Jekyll的文档,这应该有用,对吗?
答案 0 :(得分:0)
include指令正常,不会产生错误。
{% include foo.html bar="Hello World" %}
在_includes / foo.html中查找错误或发送代码以供进一步调查。