YAMLException: bad indentation of a mapping entry (105:23) 102 | # Deployment 103 | ## Docs: https://hexo.io/docs/one-command-deployment 104 | deploy: 105 | type: git repository: git@github.com:Cici-Cici/laij ...
时间: 2024-04-11 21:30:33 浏览: 258
curly.js:将带有缩进的文本转换为树层次结构
这个错误是由于 YAML 文件中的缩进问题导致的。根据错误提示,问题出现在第105行的第23个字符位置。在这个位置上,键 `type` 的缩进不正确,导致 YAML 解析器无法正确识别该键和其对应的值。
正确的缩进应该是在 `deploy` 下面增加两个空格,使其与上一行的 `type` 对齐。修改后的代码如下:
```yaml
deploy:
type: git
repository: git@github.com:Cici-Cici/laij ...
```
请注意,YAML 对缩进非常敏感,因此确保在编辑 YAML 文件时保持一致的缩进风格,一般建议使用两个空格或四个空格作为缩进。
阅读全文