我正在学习如何使用Jekyll + Liquid,并且遇到了一个问题,即对象显示为文字文本,而不是我在html中声明的变量。以下是我从jekyll教程https://jekyllrb.com/docs/step-by-step/03-front-matter/
中复制的index.html。---
title: Home
---
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
</head>
<body>
<h1>{{ "Hello World!" | downcase }}</h1>
</body>
</html>
当我使用jekyll serve
网站在本地运行该网站时
shows the literal object string rather than variable's value
我正在Windows 10笔记本电脑上运行它。
任何有关我做错事情的建议都将受到赞赏,