如何调试 assemble.io(最好在 Chrome 控制台中)

How to debug assemble.io (ideally in Chrome Console)

我希望能够捕获和检查 Assemble.io 中 Handlebars 正在解析的所有 Objects。理想情况下,在 Google Chrome 开发人员工具中,就像我检查任何其他 JavaScript 一样。有什么想法吗?

您可以使用 Assemble's logging helpers 在构建时将对象转储到控制台。这将发生在服务器上,不会报告给 Chrome 开发工具。

<!-- Dump entire 'this' context -->
{{debug}}

<!-- Log string -->
{{log "hello, logging"}}