在Jekyll中,我试图在layout.html文件中使用“include_relative”标记。
的layout.html
<div class="panel">
<div class="content-container panel-wrapper">
{% include_relative /hello.md %}
</div><!--end content container-->
</div><!--end panel-->
<div class="panel">
<div class="content-container panel-wrapper">
{% include_relative /bye.md %}
当我运行该程序时,它说:
错误:
Liquid Exception: Unknown tag 'include_relative' in layout
我知道这个标签存在,因为它在Jekyll文档网页上有描述。我还在layout.html文件中使用了其他正常工作的标签,因此它特别是我正在努力解决的“include_relative”标签。
如何才能正确识别此标记?