Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下内容_config.yml:
_config.yml
slides: [1,2,3]
然后我在我的视图上迭代它:
{% for i in site.slides %} // dummy slide {% endfor %}
它在我的本地开发机器上运行良好,虚拟幻灯片显示三次,但在 github 页面上只显示一次。你们知道为什么吗?这可能是版本问题吗?
github 上有非常“严格”的 YAML 解析器版本。几乎同样的问题已经被问到了。
我建议您对数组使用标准 YAML 表示法:
slides: - 1 - 2 - 3
希望这可以帮助。