Jekyll YAML嵌套列表抛出错误:找到一个违反缩进的制表符

时间:2014-08-09 17:28:11

标签: ruby nested jekyll

这是我正在使用的列表。

- name: Game1
  platforms: { win32, win64, linux64 }
  distribution:
    - name: here
      url: null
    - name: desura 
      url: http://www.desura.com/games/Game1
    source: https://github.com/name/Game1
  description: cg/games/Game1/description.html
  release: 2013-06-23

这就是它抛出的错误:

jekyll 2.2.0 | Error:  (C:/Users/User/jekyll-site/_data/games.yml): found a tab
character that violate intendation while scanning a plain scalar at line 39 {{- name: here}} column 13

如何修复此列表以使其有效?

1 个答案:

答案 0 :(得分:15)

你在某处有一个制表符,yaml禁止它们,所以要做的第一件事就是确保没有制表符。有几种方法可以做到这一点,包括删除每个空格并用空格字符替换它。大多数编辑器都有一种方法可视化空白区域以及它是否是制表符。还有一些程序可以将标签转换为空格字符。您可以谷歌搜索最适合您需求的内容。

在此之后,确保缩进正确,你应该没问题。