次のコードを考えてみましょう。
---
layout: post
title: "Welcome to Jekyll!"
test:
name: google.com
---
{{ post.test.name }}
{% assign addr="https://www.google.com" %}
# Heading
This is a link to [the Google homepage!][ghome]
This is another link that [may or maynot work][glink]
[ghome]: https://google.com
[glink]: {{ addr }}
適切に出力されます:
ただし、同じことをしようとしてaddr
(test.addr
したがって、それを のデータメンバーに変換するとtest
、リンクが壊れます:
- 上記の作業を行うにはどうすればよいですか?!
page.test
ページの前付に記載されている変数に新しいプロパティを追加するにはどうすればよいですか?