我正在尝试gh-pages
启动并运行一个站点。第一次使用 Jekyll。
我有一个超级基本的布局(default.html
)/_layouts
:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<div class="wrapper">
<section id="main">
{{ content }}
</section>
</div>
</body>
</html>
和单个内容页面 (index.html)
---
layout: default
---
Hello World
我的_config.yml
文件很简单
pygments: true
运行时jekyll --no-auto --server
出现以下错误。不生成文件。
.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/psych.rb:203:in `parse':
(<unknown>): did not find expected node content while parsing a flow
node at line 3 column 1 (Psych::SyntaxError)
有人知道这里有什么问题吗?