我有一个文件test.md
:
---
layout: test
item: {"label":"value"}
---
This text should not appear
和相应的文件_layouts/test.html
:
<!DOCTYPE html>
<html>
<body>
<h1>Hello world!</h1>
The field <em>label</em> has value <em>{{ page.item.label }}</em>.
</body>
</html>
正如预期的那样,在我的本地服务器上,我得到以下页面_site/test.html
:
<!DOCTYPE html>
<html>
<body>
<h1>Hello world!</h1>
The field <em>label</em> has value <em>value</em>.
</body>
</html>
在 github 上(参见http://altomani.github.com/test.html)结果是:
<p>This text should not appear</p>