私はファイルを持っています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>